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 -- Issues
create table if not exists "issues" ( create table if not exists "issues" (
-- Issue ID -- Issue ID
"id" text primary key not null, "id" text primary key not null,
-- Repository ID -- Repository ID
"repo" text not null, "repo" text not null,
-- Issue in JSON format -- Issue in JSON format
"issue" text not null "issue" text not null
) strict; ) strict;
-- Patches -- Patches
create table if not exists "patches" ( create table if not exists "patches" (
-- Patch ID -- Patch ID
"id" text primary key not null, "id" text primary key not null,
-- Repository ID -- Repository ID
"repo" text not null, "repo" text not null,
-- Patch in JSON format -- Patch in JSON format
"patch" text not null "patch" text not null
) strict; ) strict;