diff --git a/store/db/seed/10003__collection.sql b/store/db/seed/10003__collection.sql new file mode 100644 index 0000000..ca21068 --- /dev/null +++ b/store/db/seed/10003__collection.sql @@ -0,0 +1,20 @@ +INSERT INTO + collection ( + `id`, + `creator_id`, + `name`, + `title`, + `description`, + `visibility`, + `shortcut_ids` + ) +VALUES + ( + 1, + 101, + 'minecraft', + 'Minecraft', + '', + 'PUBLIC', + '1,2,3,4,5' + );