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