memos/store/db/seed/10002__memo.sql
2022-07-03 11:25:06 +08:00

44 lines
624 B
SQL

INSERT INTO
memo (
`id`,
`content`,
`creator_id`
)
VALUES
(
101,
'#Hello 👋 Welcome to memos
![](https://api.star-history.com/svg?repos=usememos/memos&type=Date&size=mobile)',
101
);
INSERT INTO
memo (
`id`,
`content`,
`creator_id`
)
VALUES
(
102,
'#TODO
- [ ] Take more photos about **🌄 sunset**;
- [x] Clean the room;
- [x] Read *📖 The Little Prince*;
(👆 click to toggle status)
',
101
);
INSERT INTO
memo (
`id`,
`content`,
`creator_id`
)
VALUES
(
103,
'好好学习,天天向上。🤜🤛',
101
);