memos/store/db/seed/10002__memo.sql

78 lines
1.2 KiB
MySQL
Raw Normal View History

INSERT INTO
memo (`id`, `content`, `creator_id`)
2022-03-28 23:38:12 +08:00
VALUES
2022-03-29 20:53:43 +08:00
(
2022-07-10 08:15:34 +08:00
1001,
"#Hello 👋 Welcome to memos.",
2022-03-29 20:53:43 +08:00
101
);
2022-05-02 10:57:31 +08:00
INSERT INTO
2022-05-02 10:57:31 +08:00
memo (
2022-05-19 18:32:04 +08:00
`id`,
`content`,
`creator_id`,
`visibility`
2022-05-02 10:57:31 +08:00
)
VALUES
(
2022-07-10 08:15:34 +08:00
1002,
2022-07-02 15:01:59 +08:00
'#TODO
- [x] Take more photos about **🌄 sunset**;
2022-07-03 11:25:06 +08:00
- [x] Clean the room;
- [ ] Read *📖 The Little Prince*;
(👆 click to toggle status)',
101,
'PROTECTED'
2022-07-02 15:01:59 +08:00
);
INSERT INTO
2022-07-02 15:01:59 +08:00
memo (
`id`,
`content`,
`creator_id`,
`visibility`
2022-07-02 15:01:59 +08:00
)
VALUES
(
2022-07-10 08:15:34 +08:00
1003,
2023-02-07 20:35:32 +08:00
"**[star-history.com](https://star-history.com/)**: The missing GitHub star history graph of GitHub repos.
![](https://api.star-history.com/svg?repos=usememos/memos&type=Date)",
101,
'PUBLIC'
2022-05-02 10:57:31 +08:00
);
INSERT INTO
memo (
`id`,
`content`,
`creator_id`,
`visibility`
)
VALUES
(
2022-07-10 08:15:34 +08:00
1004,
'#TODO
- [x] Take more photos about **🌄 sunset**;
- [ ] Clean the classroom;
- [ ] Watch *👦 The Boys*;
(👆 click to toggle status)
',
102,
'PROTECTED'
);
INSERT INTO
memo (
`id`,
`content`,
2022-07-10 08:15:34 +08:00
`creator_id`,
`visibility`
)
VALUES
(
2022-07-10 08:15:34 +08:00
1005,
'三人行,必有我师焉!👨‍🏫',
2022-07-10 08:15:34 +08:00
102,
'PUBLIC'
);