mirror of
https://github.com/usememos/memos.git
synced 2024-11-16 19:56:11 +08:00
44 lines
624 B
SQL
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
|
|
);
|