Skip to content

Commit

Permalink
update sql
Browse files Browse the repository at this point in the history
  • Loading branch information
rancoud committed Jan 19, 2024
1 parent e1dc077 commit 872da2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker-examples/dump-with-anonymous-user.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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);
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);

0 comments on commit 872da2a

Please sign in to comment.