forked from tkhamez/neucore-mumble-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
create.sql
31 lines (29 loc) · 1.08 KB
/
create.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
create table ticker
(
filter varchar(45) not null primary key,
text varchar(5) not null
) engine = InnoDB charset = utf8mb4;
create table user
(
character_id int not null primary key,
character_name varchar(255) not null,
corporation_id int not null,
corporation_name varchar(255) not null,
alliance_id int null,
alliance_name varchar(255) null,
mumble_username varchar(45) not null,
mumble_password varchar(45) not null,
created_at int not null,
updated_at int not null,
`groups` text null,
owner_hash varchar(45) not null,
mumble_fullname varchar(255) not null,
avatar blob null,
account_active tinyint default 1 null
) engine = InnoDB charset = utf8mb4;
create table ban
(
filter varchar(45) not null primary key,
reason_public text null,
reason_internal text null
) engine = InnoDB charset = utf8mb4;