mirror of
https://github.com/usememos/memos.git
synced 2024-11-16 19:56:11 +08:00
c72f221fc0
* Rename checkDSN to checkDataDir * Add option to set DSN and db driver * Add mysql driver skeleton * Add mysql container in compose for debug * Add basic function for mysql driver * Cleanup go mod with tidy * Cleanup go.sum with tidy * Add DeleteUser support for mysql driver * Fix UpdateUser of mysql driver * Add DeleteTag support for mysql driver * Add DeleteResource support for mysql driver * Add UpdateMemo and DeleteMemo support for mysql driver * Add MemoRelation support for mysql driver * Add MemoOrganizer support for mysql driver * Add Idp support for mysql driver * Add Storage support for mysql driver * Add FindMemosVisibilityList support for mysql driver * Add Vacuum support for mysql driver * Add Migration support for mysql driver * Add Migration support for mysql driver * Fix ListMemo failed with referece * Change Activity.CreateTs type in MySQL * Change User.CreateTs type in MySQL * Fix by golangci-lint * Change Resource.CreateTs type in MySQL * Change MigrationHistory.CreateTs type in MySQL * Change Memo.CreateTs type in MySQL
54 lines
1,016 B
SQL
54 lines
1,016 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/boojack/slash)**: A bookmarking and url shortener, save and share your links very easily.
|
|
![](https://github.com/boojack/slash/raw/main/resources/demo.gif)
|
|
|
|
**[SQL Chat](https://www.sqlchat.ai)**: Chat-based SQL Client
|
|
![](https://www.sqlchat.ai/chat-logo-and-text.webp)",
|
|
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'
|
|
);
|