mirror of
https://github.com/usememos/memos.git
synced 2024-11-13 18:31:28 +08:00
78 lines
No EOL
1.2 KiB
SQL
78 lines
No EOL
1.2 KiB
SQL
INSERT INTO
|
|
memo (`id`, `content`, `creator_id`)
|
|
VALUES
|
|
(
|
|
1001,
|
|
"#Hello 👋 Welcome to memos.",
|
|
101
|
|
);
|
|
|
|
INSERT INTO
|
|
memo (
|
|
`id`,
|
|
`content`,
|
|
`creator_id`,
|
|
`visibility`
|
|
)
|
|
VALUES
|
|
(
|
|
1002,
|
|
'#TODO
|
|
- [x] Take more photos about **🌄 sunset**;
|
|
- [x] Clean the room;
|
|
- [ ] Read *📖 The Little Prince*;
|
|
(👆 click to toggle status)',
|
|
101,
|
|
'PROTECTED'
|
|
);
|
|
|
|
INSERT INTO
|
|
memo (
|
|
`id`,
|
|
`content`,
|
|
`creator_id`,
|
|
`visibility`
|
|
)
|
|
VALUES
|
|
(
|
|
1003,
|
|
"**[star-history.com](https://star-history.com/)**: The missing GitHub star history graph of GitHub repos.
|
|
![](https://api.star-history.com/svg?repos=usememos/memos&type=Date)",
|
|
101,
|
|
'PUBLIC'
|
|
);
|
|
|
|
INSERT INTO
|
|
memo (
|
|
`id`,
|
|
`content`,
|
|
`creator_id`,
|
|
`visibility`
|
|
)
|
|
VALUES
|
|
(
|
|
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`,
|
|
`creator_id`,
|
|
`visibility`
|
|
)
|
|
VALUES
|
|
(
|
|
1005,
|
|
'三人行,必有我师焉!👨🏫',
|
|
102,
|
|
'PUBLIC'
|
|
); |