mirror of
https://github.com/usememos/memos.git
synced 2024-11-17 04:07:30 +08:00
51 lines
904 B
SQL
51 lines
904 B
SQL
INSERT INTO
|
|
memo (`id`, `content`, `creator_id`)
|
|
VALUES
|
|
(
|
|
1,
|
|
"#Hello 👋 Welcome to memos.",
|
|
101
|
|
);
|
|
|
|
INSERT INTO
|
|
memo (
|
|
`id`,
|
|
`content`,
|
|
`creator_id`,
|
|
`visibility`
|
|
)
|
|
VALUES
|
|
(
|
|
2,
|
|
'#TODO
|
|
- [x] Take more photos about **🌄 sunset**
|
|
- [x] Clean the room
|
|
- [ ] Read *📖 The Little Prince*
|
|
(👆 click to toggle status)',
|
|
101,
|
|
'PROTECTED'
|
|
),
|
|
(
|
|
3,
|
|
"**[Slash](https://github.com/yourselfhosted/slash)**: A bookmarking and url shortener, save and share your links very easily.
|
|
**[SQL Chat](https://www.sqlchat.ai)**: Chat-based SQL Client",
|
|
101,
|
|
'PUBLIC'
|
|
),
|
|
(
|
|
4,
|
|
'#TODO
|
|
- [x] Take more photos about **🌄 sunset**
|
|
- [ ] Clean the classroom
|
|
- [ ] Watch *👦 The Boys*
|
|
(👆 click to toggle status)
|
|
',
|
|
102,
|
|
'PROTECTED'
|
|
),
|
|
(
|
|
5,
|
|
'三人行,必有我师焉!👨🏫',
|
|
102,
|
|
'PUBLIC'
|
|
);
|