radicle: Fix indentation of SQL file

This commit is contained in:
cloudhead 2024-02-23 17:57:32 +01:00
parent 9e745b68d1
commit 449790e252
No known key found for this signature in database
1 changed files with 12 additions and 12 deletions

View File

@ -1,19 +1,19 @@
-- Issues
create table if not exists "issues" (
-- Issue ID
"id" text primary key not null,
-- Repository ID
"repo" text not null,
-- Issue in JSON format
"issue" text not null
-- Issue ID
"id" text primary key not null,
-- Repository ID
"repo" text not null,
-- Issue in JSON format
"issue" text not null
) strict;
-- Patches
create table if not exists "patches" (
-- Patch ID
"id" text primary key not null,
-- Repository ID
"repo" text not null,
-- Patch in JSON format
"patch" text not null
-- Patch ID
"id" text primary key not null,
-- Repository ID
"repo" text not null,
-- Patch in JSON format
"patch" text not null
) strict;