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

84 lines
1.2 KiB
MySQL
Raw Normal View History

2022-03-29 20:53:43 +08:00
INSERT INTO
memo (
2022-05-19 18:32:04 +08:00
`id`,
2022-03-29 20:53:43 +08:00
`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
memo (
2022-05-19 18:32:04 +08:00
`id`,
2022-05-02 10:57:31 +08:00
`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*;
2022-07-09 12:00:26 +08:00
(👆 click to toggle status)',
101,
'PROTECTED'
2022-07-02 15:01:59 +08:00
);
INSERT INTO
memo (
`id`,
`content`,
`creator_id`,
`visibility`
2022-07-02 15:01:59 +08:00
)
VALUES
(
2022-07-10 08:15:34 +08:00
1003,
"DevJoy is **the Developer's ChinaJoy**.
![](https://www.devjoy.org/images/skateboard.webp)
🌐 [devjoy.org](https://www.devjoy.org/)",
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'
);