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

89 lines
1.4 KiB
MySQL
Raw Normal View History

INSERT INTO
2024-01-20 23:48:35 +08:00
memo (
`id`,
`resource_name`,
`content`,
`creator_id`
)
2022-03-28 23:38:12 +08:00
VALUES
2022-03-29 20:53:43 +08:00
(
1,
2024-01-28 07:58:53 +08:00
"FqaZcg5H6EdGB9ke8kYUcy",
"#Hello 👋 Welcome to memos.",
2022-03-29 20:53:43 +08:00
101
);
2022-05-02 10:57:31 +08:00
INSERT INTO
2022-05-02 10:57:31 +08:00
memo (
2022-05-19 18:32:04 +08:00
`id`,
2024-01-20 23:48:35 +08:00
`resource_name`,
`content`,
`creator_id`,
`visibility`
2022-05-02 10:57:31 +08:00
)
VALUES
(
2,
2024-01-28 07:58:53 +08:00
"DCo8442yRnXYPPcKSUAaEb",
2022-07-02 15:01:59 +08:00
'#TODO
- [x] Take more photos about **🌄 sunset**;
2022-07-03 11:25:06 +08:00
- [x] Clean the room;
2023-12-19 08:41:41 +08:00
- [ ] Read *📖 The Little Prince*;',
101,
'PROTECTED'
2022-07-02 15:01:59 +08:00
);
INSERT INTO
2022-07-02 15:01:59 +08:00
memo (
`id`,
2024-01-20 23:48:35 +08:00
`resource_name`,
`content`,
`creator_id`,
`visibility`
2022-07-02 15:01:59 +08:00
)
VALUES
(
3,
2024-01-28 07:58:53 +08:00
"ZvH7a6VWMuX5aArtECTj4N",
2023-12-18 23:46:48 +08:00
'**[Memos](https://github.com/usememos/memos)**: A lightweight, self-hosted memo hub. Open Source and Free forever.
**[Slash](https://github.com/yourselfhosted/slash)**: An open source, self-hosted bookmarks and link sharing platform. Save and share your links very easily.',
101,
'PUBLIC'
2022-05-02 10:57:31 +08:00
);
INSERT INTO
memo (
`id`,
2024-01-20 23:48:35 +08:00
`resource_name`,
`content`,
`creator_id`,
`visibility`
)
VALUES
(
4,
2024-01-28 07:58:53 +08:00
"2ad3WzUF4C6pTYXdm2nQC6",
'#TODO
- [x] Take more photos about **🌄 sunset**;
- [ ] Clean the classroom;
2023-12-19 00:13:22 +08:00
- [ ] Watch *👦 The Boys*;',
102,
'PROTECTED'
);
INSERT INTO
memo (
`id`,
2024-01-20 23:48:35 +08:00
`resource_name`,
`content`,
2022-07-10 08:15:34 +08:00
`creator_id`,
`visibility`
)
VALUES
(
5,
2024-01-28 07:58:53 +08:00
"Pw2awZvxxLK4sPRtHmYuS7",
'三人行,必有我师焉!👨‍🏫',
2022-07-10 08:15:34 +08:00
102,
'PUBLIC'
);