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

81 lines
1.3 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-07-12 00:16:19 +08:00
"**[Slash](https://github.com/boojack/slash)**: A bookmarking and url shortener, save and share your links very easily.
![](https://github.com/boojack/slash/raw/main/resources/demo.gif)
2023-03-28 22:25:54 +08:00
2023-07-02 23:58:02 +08:00
**[SQL Chat](https://www.sqlchat.ai)**: Chat-based SQL Client
![](https://www.sqlchat.ai/chat-logo-and-text.webp)",
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'
);