123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- 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'
- );
- INSERT INTO
- memo (
- `id`,
- `content`,
- `creator_id`,
- `visibility`
- )
- VALUES
- (
- 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)
- **[TechStack](https://github.com/Get-Tech-Stack/TechStack)**: A browser extension that will display the technology stack of the GitHub repository.
- ![](https://github.com/Get-Tech-Stack/TechStack/blob/main/img/1.png?raw=true)",
- 101,
- 'PUBLIC'
- );
- INSERT INTO
- memo (
- `id`,
- `content`,
- `creator_id`,
- `visibility`
- )
- VALUES
- (
- 4,
- '#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
- (
- 5,
- 'δΈδΊΊθ‘οΌεΏ
ζζεΈηοΌπ¨βπ«',
- 102,
- 'PUBLIC'
- );
|