2023-01-22 16:16:03 +03:00
|
|
|
INSERT INTO
|
|
|
|
memo (`id`, `content`, `creator_id`)
|
2022-03-28 18:38:12 +03:00
|
|
|
VALUES
|
2022-03-29 15:53:43 +03:00
|
|
|
(
|
2022-07-10 03:15:34 +03:00
|
|
|
1001,
|
2023-01-22 16:16:03 +03:00
|
|
|
"#Hello 👋 Welcome to memos.",
|
2022-03-29 15:53:43 +03:00
|
|
|
101
|
|
|
|
);
|
2022-05-02 05:57:31 +03:00
|
|
|
|
2023-01-22 16:16:03 +03:00
|
|
|
INSERT INTO
|
2022-05-02 05:57:31 +03:00
|
|
|
memo (
|
2022-05-19 13:32:04 +03:00
|
|
|
`id`,
|
2023-01-22 16:16:03 +03:00
|
|
|
`content`,
|
2022-07-26 16:12:20 +03:00
|
|
|
`creator_id`,
|
|
|
|
`visibility`
|
2022-05-02 05:57:31 +03:00
|
|
|
)
|
|
|
|
VALUES
|
|
|
|
(
|
2022-07-10 03:15:34 +03:00
|
|
|
1002,
|
2022-07-02 10:01:59 +03:00
|
|
|
'#TODO
|
2022-10-20 12:19:37 +03:00
|
|
|
- [x] Take more photos about **🌄 sunset**;
|
2022-07-03 06:25:06 +03:00
|
|
|
- [x] Clean the room;
|
2022-10-20 12:19:37 +03:00
|
|
|
- [ ] Read *📖 The Little Prince*;
|
2023-01-22 16:16:03 +03:00
|
|
|
(👆 click to toggle status)',
|
2022-07-26 16:12:20 +03:00
|
|
|
101,
|
|
|
|
'PROTECTED'
|
2022-07-02 10:01:59 +03:00
|
|
|
);
|
|
|
|
|
2023-01-22 16:16:03 +03:00
|
|
|
INSERT INTO
|
2022-07-02 10:01:59 +03:00
|
|
|
memo (
|
|
|
|
`id`,
|
2023-01-22 16:16:03 +03:00
|
|
|
`content`,
|
2022-07-08 17:23:27 +03:00
|
|
|
`creator_id`,
|
|
|
|
`visibility`
|
2022-07-02 10:01:59 +03:00
|
|
|
)
|
|
|
|
VALUES
|
|
|
|
(
|
2022-07-10 03:15:34 +03:00
|
|
|
1003,
|
2023-07-02 18:58:02 +03:00
|
|
|
"**[Shortify](https://github.com/boojack/shortify)**: A bookmarking and short link service that allows you to save and share links easily.
|
|
|
|
![](https://github.com/boojack/shortify/raw/main/resources/demo.gif)
|
2023-03-28 17:25:54 +03:00
|
|
|
|
2023-07-02 18:58:02 +03:00
|
|
|
**[SQL Chat](https://www.sqlchat.ai)**: Chat-based SQL Client
|
|
|
|
![](https://www.sqlchat.ai/chat-logo-and-text.webp)",
|
2022-07-08 17:23:27 +03:00
|
|
|
101,
|
|
|
|
'PUBLIC'
|
2022-05-02 05:57:31 +03:00
|
|
|
);
|
2022-07-07 15:22:36 +03:00
|
|
|
|
2023-01-22 16:16:03 +03:00
|
|
|
INSERT INTO
|
2022-07-07 15:22:36 +03:00
|
|
|
memo (
|
|
|
|
`id`,
|
2023-01-22 16:16:03 +03:00
|
|
|
`content`,
|
2022-07-26 16:12:20 +03:00
|
|
|
`creator_id`,
|
|
|
|
`visibility`
|
2022-07-07 15:22:36 +03:00
|
|
|
)
|
|
|
|
VALUES
|
|
|
|
(
|
2022-07-10 03:15:34 +03:00
|
|
|
1004,
|
2022-07-07 18:11:20 +03:00
|
|
|
'#TODO
|
|
|
|
- [x] Take more photos about **🌄 sunset**;
|
|
|
|
- [ ] Clean the classroom;
|
|
|
|
- [ ] Watch *👦 The Boys*;
|
|
|
|
(👆 click to toggle status)
|
2023-01-22 16:16:03 +03:00
|
|
|
',
|
2022-07-26 16:12:20 +03:00
|
|
|
102,
|
|
|
|
'PROTECTED'
|
2022-07-07 18:11:20 +03:00
|
|
|
);
|
|
|
|
|
2023-01-22 16:16:03 +03:00
|
|
|
INSERT INTO
|
2022-07-07 18:11:20 +03:00
|
|
|
memo (
|
|
|
|
`id`,
|
2023-01-22 16:16:03 +03:00
|
|
|
`content`,
|
2022-07-10 03:15:34 +03:00
|
|
|
`creator_id`,
|
|
|
|
`visibility`
|
2022-07-07 18:11:20 +03:00
|
|
|
)
|
|
|
|
VALUES
|
|
|
|
(
|
2022-07-10 03:15:34 +03:00
|
|
|
1005,
|
2023-01-22 16:16:03 +03:00
|
|
|
'三人行,必有我师焉!👨🏫',
|
2022-07-10 03:15:34 +03:00
|
|
|
102,
|
|
|
|
'PUBLIC'
|
2023-01-22 16:16:03 +03:00
|
|
|
);
|