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

27 lines
282 B
MySQL
Raw Normal View History

2022-03-29 20:53:43 +08:00
INSERT INTO
memo (
2022-05-19 18:32:04 +08:00
`id`,
2022-03-29 20:53:43 +08:00
`content`,
`creator_id`
)
2022-03-28 23:38:12 +08:00
VALUES
2022-03-29 20:53:43 +08:00
(
2022-05-19 18:32:04 +08:00
101,
2022-06-30 22:36:19 +08:00
'#memos
👋 Welcome to memos',
2022-03-29 20:53:43 +08:00
101
);
2022-05-02 10:57:31 +08:00
INSERT INTO
memo (
2022-05-19 18:32:04 +08:00
`id`,
2022-05-02 10:57:31 +08:00
`content`,
2022-05-19 18:32:04 +08:00
`creator_id`
2022-05-02 10:57:31 +08:00
)
VALUES
(
2022-05-19 18:32:04 +08:00
102,
2022-05-02 10:57:31 +08:00
'好好学习,天天向上。',
2022-05-19 18:32:04 +08:00
101
2022-05-02 10:57:31 +08:00
);