aboutsummaryrefslogtreecommitdiff
path: root/backend/database/init.sql
blob: bf10948c363fed2ce59ce6b769a3ec2ced95192a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
DROP TABLE IF EXISTS users;
CREATE TABLE users (
  steam_id BIGINT,
  username VARCHAR(128) NOT NULL,
  avatar_link VARCHAR(128) NOT NULL,
  country_code CHAR(2) NOT NULL DEFAULT 'X',
  created_at TIMESTAMP NOT NULL,
  updated_at TIMESTAMP,
  user_type SMALLINT NOT NULL,
  PRIMARY KEY (steam_id)
);