memos/store/db/seed/10002__memo.sql
2022-07-02 15:01:59 +08:00

42 lines
526 B
SQL

INSERT INTO
memo (
`id`,
`content`,
`creator_id`
)
VALUES
(
101,
'#Hello 👋 Welcome to memos',
101
);
INSERT INTO
memo (
`id`,
`content`,
`creator_id`
)
VALUES
(
102,
'#TODO
- [x] Clean my room in weekend;
- [ ] Take more photos about **🌄 sunset**;
- [x] Reading *📖 The Little Prince*;
',
101
);
INSERT INTO
memo (
`id`,
`content`,
`creator_id`
)
VALUES
(
103,
'好好学习,天天向上。🤜🤛',
101
);