From 16670b6b8d179c9851742553a12f6a8793f41ee5 Mon Sep 17 00:00:00 2001 From: Steven Date: Wed, 8 May 2024 20:08:53 +0800 Subject: [PATCH] chore: tweak seed data --- store/db/sqlite/seed/10002__memo.sql | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/store/db/sqlite/seed/10002__memo.sql b/store/db/sqlite/seed/10002__memo.sql index ec05c678..6d775e2d 100644 --- a/store/db/sqlite/seed/10002__memo.sql +++ b/store/db/sqlite/seed/10002__memo.sql @@ -3,14 +3,16 @@ INSERT INTO `id`, `uid`, `content`, - `creator_id` + `creator_id`, + `tags` ) VALUES ( 1, "FqaZcg5H6EdGB9ke8kYUcy", "#Hello 👋 Welcome to memos.", - 101 + 101, + '["Hello"]' ); INSERT INTO @@ -19,7 +21,8 @@ INSERT INTO `uid`, `content`, `creator_id`, - `visibility` + `visibility`, + `tags` ) VALUES ( @@ -30,7 +33,8 @@ VALUES - [x] Clean the room; - [ ] Read *📖 The Little Prince*;', 101, - 'PROTECTED' + 'PROTECTED', + '["TODO"]' ); INSERT INTO @@ -57,7 +61,8 @@ INSERT INTO `uid`, `content`, `creator_id`, - `visibility` + `visibility`, + `tags` ) VALUES ( @@ -68,7 +73,8 @@ VALUES - [ ] Clean the classroom; - [ ] Watch *👦 The Boys*;', 102, - 'PROTECTED' + 'PROTECTED', + '["TODO"]' ); INSERT INTO