chore: tweak seed data

This commit is contained in:
Steven 2024-05-08 20:08:53 +08:00
parent d57e7d5a0b
commit 16670b6b8d

View File

@ -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