Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
radicle: Fix indentation of SQL file
cloudhead committed 2 years ago
commit 449790e252869a9ea22ad139cc364424deeda1fb
parent 9e745b68d12d96a29d9aab3320438a1b231bdd17
1 file changed +12 -12
modified radicle/src/cob/cache/migrations/1.sql
@@ -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;