radicle: Fix indentation of SQL file
This commit is contained in:
parent
9e745b68d1
commit
449790e252
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue