mirror of
https://github.com/djhackersdev/minime.git
synced 2026-03-22 02:04:19 -05:00
10 lines
317 B
SQL
10 lines
317 B
SQL
create table "aime_player" (
|
|
"id" integer primary key not null,
|
|
"ext_id" integer not null,
|
|
"luid" text not null,
|
|
"register_time" timestamp not null,
|
|
"access_time" timestamp not null,
|
|
constraint "aime_player_ext_id_uq" unique ("ext_id"),
|
|
constraint "aime_player_luid_uq" unique ("luid")
|
|
);
|