mirror of
https://github.com/usememos/memos.git
synced 2024-11-16 19:56:11 +08:00
10 lines
120 B
SQL
10 lines
120 B
SQL
INSERT INTO
|
|
memo (
|
|
`content`,
|
|
`creator_id`
|
|
)
|
|
VALUES
|
|
(
|
|
'#memos 👋 Welcome to memos',
|
|
101
|
|
);
|