From 449790e252869a9ea22ad139cc364424deeda1fb Mon Sep 17 00:00:00 2001 From: cloudhead Date: Fri, 23 Feb 2024 17:57:32 +0100 Subject: [PATCH] radicle: Fix indentation of SQL file --- radicle/src/cob/cache/migrations/1.sql | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/radicle/src/cob/cache/migrations/1.sql b/radicle/src/cob/cache/migrations/1.sql index eeb13471..5f18981c 100644 --- a/radicle/src/cob/cache/migrations/1.sql +++ b/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;