From 3da0e4720e9c69b7d8f382213cb16e385ca2e1c1 Mon Sep 17 00:00:00 2001 From: Steven Date: Thu, 16 Nov 2023 07:38:09 +0800 Subject: [PATCH] chore: add collection seed data --- store/db/seed/10003__collection.sql | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 store/db/seed/10003__collection.sql 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' + );