JaneDoe-ZS/nap_common/migrations/0001_tables.sql

27 lines
662 B
MySQL
Raw Permalink Normal View History

2024-07-20 12:13:04 +00:00
CREATE TABLE t_sdk_account (
uid int primary key generated always as identity,
token varchar(64) NOT NULL,
username varchar(40) NOT NULL,
password varchar(256) NOT NULL,
UNIQUE(username)
);
CREATE TABLE t_combo_token (
account_uid varchar(32) primary key,
token varchar(64) NOT NULL,
device_id varchar(128) NOT NULL,
UNIQUE(account_uid, device_id)
);
CREATE TABLE t_user_uid (
uid int primary key generated always as identity,
account_uid varchar(64) NOT NULL,
ext varchar(512) NOT NULL DEFAULT '',
UNIQUE(account_uid)
);
CREATE TABLE t_player_data (
uid int primary key,
bin_data bytea NOT NULL
);