mirror of
https://github.com/aykhans/slash-e.git
synced 2025-04-16 04:13:12 +00:00
21 lines
271 B
SQL
21 lines
271 B
SQL
INSERT INTO
|
|
collection (
|
|
`id`,
|
|
`creator_id`,
|
|
`name`,
|
|
`title`,
|
|
`description`,
|
|
`visibility`,
|
|
`shortcut_ids`
|
|
)
|
|
VALUES
|
|
(
|
|
1,
|
|
101,
|
|
'minecraft',
|
|
'Minecraft',
|
|
'My daily thoughts and ideas',
|
|
'PUBLIC',
|
|
'1,2,3,4,5'
|
|
);
|