We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31ccd42 commit bcadac7Copy full SHA for bcadac7
migrations/V138__game_join_log.sql
@@ -0,0 +1,10 @@
1
+create table game_join_log
2
+(
3
+ id BIGINT auto_increment
4
+ primary key,
5
+ player_id mediumint unsigned not null,
6
+ game_id int unsigned not null,
7
+ create_time datetime default now() not null,
8
+ constraint game_join_log_login_id_fk
9
+ foreign key (player_id) references login (id)
10
+);
0 commit comments