diff --git a/docker-examples/dump-with-anonymous-user.sql b/docker-examples/dump-with-anonymous-user.sql index fdffc71..2820dc7 100644 --- a/docker-examples/dump-with-anonymous-user.sql +++ b/docker-examples/dump-with-anonymous-user.sql @@ -6,7 +6,7 @@ create table if not exists blueprints slug varchar(100) not null, file_id varchar(100) not null, title varchar(255) not null, - type enum('animation', 'behavior_tree', 'blueprint', 'material', 'metasound', 'niagara') default 'blueprint' not null, + type enum('animation', 'behavior_tree', 'blueprint', 'material', 'metasound', 'niagara', 'pcg') default 'blueprint' not null, ue_version char(5) default '4.0' not null, current_version int unsigned not null, thumbnail varchar(255) null, @@ -137,4 +137,4 @@ create table if not exists users_infos charset=utf8mb4; INSERT INTO `users` (`id`, `username`, `password`, `slug`, `email`, `password_reset`, `password_reset_at`, `grade`, `avatar`, `remember_token`, `created_at`, `confirmed_token`, `confirmed_sent_at`, `confirmed_at`) VALUES ('1', 'anonymous', NULL, 'anonymous', NULL, NULL, NOW(), 'member', NULL, NULL, NOW(), NULL, NOW(), NOW()); -INSERT INTO `users_infos` (`id_user`, `count_public_blueprint`, `count_public_comment`, `count_private_blueprint`, `count_private_comment`, `bio`, `link_website`, `link_facebook`, `link_twitter`, `link_github`, `link_twitch`, `link_unreal`, `link_youtube`) VALUES ('1', '0', '0', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); \ No newline at end of file +INSERT INTO `users_infos` (`id_user`, `count_public_blueprint`, `count_public_comment`, `count_private_blueprint`, `count_private_comment`, `bio`, `link_website`, `link_facebook`, `link_twitter`, `link_github`, `link_twitch`, `link_unreal`, `link_youtube`) VALUES ('1', '0', '0', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);