mirror of
https://github.com/usememos/memos.git
synced 2024-12-19 09:02:49 +03:00
13 lines
121 B
SQL
13 lines
121 B
SQL
INSERT INTO
|
|
memo_organizer (
|
|
`memo_id`,
|
|
`user_id`,
|
|
`pinned`
|
|
)
|
|
VALUES
|
|
(
|
|
1001,
|
|
101,
|
|
1
|
|
);
|