From d3744ccfa3229d85dc6df9fb0e2327aa05750c01 Mon Sep 17 00:00:00 2001 From: Steven Date: Mon, 13 May 2024 22:07:44 +0800 Subject: [PATCH] chore: tweak seed data --- store/db/sqlite/seed/10002__memo.sql | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/store/db/sqlite/seed/10002__memo.sql b/store/db/sqlite/seed/10002__memo.sql index 6d775e2d..790d2670 100644 --- a/store/db/sqlite/seed/10002__memo.sql +++ b/store/db/sqlite/seed/10002__memo.sql @@ -4,7 +4,7 @@ INSERT INTO `uid`, `content`, `creator_id`, - `tags` + `payload` ) VALUES ( @@ -12,7 +12,7 @@ VALUES "FqaZcg5H6EdGB9ke8kYUcy", "#Hello 👋 Welcome to memos.", 101, - '["Hello"]' + '{"property": {"tags": ["Hello"]}}' ); INSERT INTO @@ -22,7 +22,7 @@ INSERT INTO `content`, `creator_id`, `visibility`, - `tags` + `payload` ) VALUES ( @@ -34,7 +34,7 @@ VALUES - [ ] Read *📖 The Little Prince*;', 101, 'PROTECTED', - '["TODO"]' + '{"property": {"tags": ["TODO"]}}' ); INSERT INTO @@ -62,7 +62,7 @@ INSERT INTO `content`, `creator_id`, `visibility`, - `tags` + `payload` ) VALUES ( @@ -74,7 +74,7 @@ VALUES - [ ] Watch *👦 The Boys*;', 102, 'PROTECTED', - '["TODO"]' + '{"property": {"tags": ["TODO"]}}' ); INSERT INTO