memos/store/db/seed/10002__memo.sql
boojack 697d01e306
feat: add visibility field to memo (#109)
* feat: add `visibility` field to memo

* chore: fix typo
2022-07-08 22:23:27 +08:00

78 lines
1.0 KiB
SQL

INSERT INTO
memo (
`id`,
`content`,
`creator_id`
)
VALUES
(
101,
'#Hello 👋 Welcome to memos
![](https://api.star-history.com/svg?repos=usememos/memos&type=Date&size=mobile)',
101
);
INSERT INTO
memo (
`id`,
`content`,
`creator_id`
)
VALUES
(
102,
'#TODO
- [ ] Take more photos about **🌄 sunset**;
- [x] Clean the room;
- [x] Read *📖 The Little Prince*;
(👆 click to toggle status)
',
101
);
INSERT INTO
memo (
`id`,
`content`,
`creator_id`,
`visibility`
)
VALUES
(
103,
'好好学习,天天向上。🤜🤛',
101,
'PUBLIC'
);
INSERT INTO
memo (
`id`,
`content`,
`creator_id`
)
VALUES
(
104,
'#TODO
- [x] Take more photos about **🌄 sunset**;
- [ ] Clean the classroom;
- [ ] Watch *👦 The Boys*;
(👆 click to toggle status)
',
102
);
INSERT INTO
memo (
`id`,
`content`,
`creator_id`
)
VALUES
(
105,
'三人行,必有我师焉!👨‍🏫',
102
);