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

76 lines
977 B
MySQL
Raw Normal View History

2022-03-29 15:53:43 +03:00
INSERT INTO
memo (
2022-05-19 13:32:04 +03:00
`id`,
2022-03-29 15:53:43 +03:00
`content`,
`creator_id`
)
2022-03-28 18:38:12 +03:00
VALUES
2022-03-29 15:53:43 +03:00
(
2022-05-19 13:32:04 +03:00
101,
2022-07-09 07:00:26 +03:00
'#Hello 👋 Welcome to memos',
2022-03-29 15:53:43 +03:00
101
);
2022-05-02 05:57:31 +03:00
INSERT INTO
memo (
2022-05-19 13:32:04 +03:00
`id`,
2022-05-02 05:57:31 +03:00
`content`,
2022-05-19 13:32:04 +03:00
`creator_id`
2022-05-02 05:57:31 +03:00
)
VALUES
(
2022-05-19 13:32:04 +03:00
102,
2022-07-02 10:01:59 +03:00
'#TODO
- [ ] Take more photos about **🌄 sunset**;
2022-07-03 06:25:06 +03:00
- [x] Clean the room;
- [x] Read *📖 The Little Prince*;
2022-07-09 07:00:26 +03:00
(👆 click to toggle status)',
2022-07-02 10:01:59 +03:00
101
);
INSERT INTO
memo (
`id`,
`content`,
`creator_id`,
`visibility`
2022-07-02 10:01:59 +03:00
)
VALUES
(
103,
'好好学习,天天向上。🤜🤛',
101,
'PUBLIC'
2022-05-02 05:57:31 +03:00
);
INSERT INTO
memo (
`id`,
`content`,
`creator_id`
)
VALUES
(
104,
'#TODO
- [x] Take more photos about **🌄 sunset**;
- [ ] Clean the classroom;
- [ ] Watch *👦 The Boys*;
(👆 click to toggle status)
',
102
);
INSERT INTO
memo (
`id`,
`content`,
`creator_id`
)
VALUES
(
105,
'三人行,必有我师焉!👨‍🏫',
102
);