memos/store/sqlite/seed/10002__memo.sql

81 lines
1.4 KiB
MySQL
Raw Normal View History

INSERT INTO
memo (`id`, `content`, `creator_id`)
2022-03-28 18:38:12 +03:00
VALUES
2022-03-29 15:53:43 +03:00
(
1,
"#Hello 👋 Welcome to memos.",
2022-03-29 15:53:43 +03:00
101
);
2022-05-02 05:57:31 +03:00
INSERT INTO
2022-05-02 05:57:31 +03:00
memo (
2022-05-19 13:32:04 +03:00
`id`,
`content`,
`creator_id`,
`visibility`
2022-05-02 05:57:31 +03:00
)
VALUES
(
2,
2022-07-02 10:01:59 +03:00
'#TODO
- [x] Take more photos about **🌄 sunset**;
2022-07-03 06:25:06 +03:00
- [x] Clean the room;
- [ ] Read *📖 The Little Prince*;
(👆 click to toggle status)',
101,
'PROTECTED'
2022-07-02 10:01:59 +03:00
);
INSERT INTO
2022-07-02 10:01:59 +03:00
memo (
`id`,
`content`,
`creator_id`,
`visibility`
2022-07-02 10:01:59 +03:00
)
VALUES
(
3,
2023-07-11 19:16:19 +03:00
"**[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)
2023-03-28 17:25:54 +03:00
2023-09-28 17:03:32 +03:00
**[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'
2022-05-02 05:57:31 +03:00
);
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`,
2022-07-10 03:15:34 +03:00
`creator_id`,
`visibility`
)
VALUES
(
5,
'三人行,必有我师焉!👨‍🏫',
2022-07-10 03:15:34 +03:00
102,
'PUBLIC'
);