1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- 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,
- "**Bytebase** - An open source Database CI/CD for DevOps teams.
- ![](https://star-history.com/bytebase.webp)
- 🌐 [Source code](https://github.com/bytebase/bytebase)",
- 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'
- );
|