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`, `id`,
`uid`, `uid`,
`content`, `content`,
`creator_id` `creator_id`,
`tags`
) )
VALUES VALUES
( (
1, 1,
"FqaZcg5H6EdGB9ke8kYUcy", "FqaZcg5H6EdGB9ke8kYUcy",
"#Hello 👋 Welcome to memos.", "#Hello 👋 Welcome to memos.",
101 101,
'["Hello"]'
); );
INSERT INTO INSERT INTO
@ -19,7 +21,8 @@ INSERT INTO
`uid`, `uid`,
`content`, `content`,
`creator_id`, `creator_id`,
`visibility` `visibility`,
`tags`
) )
VALUES VALUES
( (
@ -30,7 +33,8 @@ VALUES
- [x] Clean the room; - [x] Clean the room;
- [ ] Read *📖 The Little Prince*;', - [ ] Read *📖 The Little Prince*;',
101, 101,
'PROTECTED' 'PROTECTED',
'["TODO"]'
); );
INSERT INTO INSERT INTO
@ -57,7 +61,8 @@ INSERT INTO
`uid`, `uid`,
`content`, `content`,
`creator_id`, `creator_id`,
`visibility` `visibility`,
`tags`
) )
VALUES VALUES
( (
@ -68,7 +73,8 @@ VALUES
- [ ] Clean the classroom; - [ ] Clean the classroom;
- [ ] Watch *👦 The Boys*;', - [ ] Watch *👦 The Boys*;',
102, 102,
'PROTECTED' 'PROTECTED',
'["TODO"]'
); );
INSERT INTO INSERT INTO