This commit is contained in:
Alexey 2020-02-08 18:40:15 +03:00
parent 1319d970bc
commit 3159f97daa
1 changed files with 0 additions and 15 deletions

View File

@ -1,15 +0,0 @@
create table contributions
(
id int auto_increment,
token varchar(64) not null,
name varchar(255) null,
company varchar(255) null,
handle varchar(255) null,
socialType varchar(255) not null,
hash varchar(130) null,
constraint contributions_pk
primary key (id)
);
create unique index contributions_token_uindex on contributions (token);