Skip to content

Commit

Permalink
License first in sql too
Browse files Browse the repository at this point in the history
  • Loading branch information
RedAlex committed Oct 14, 2019
1 parent c18c132 commit c1fd490
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions database.sql
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ CREATE TABLE IF NOT EXISTS banlist (
DROP TABLE IF EXISTS banlisthistory;
CREATE TABLE IF NOT EXISTS banlisthistory (
id int(11) AUTO_INCREMENT PRIMARY KEY,
identifier varchar(25) COLLATE utf8mb4_bin DEFAULT NULL,
license varchar(50) COLLATE utf8mb4_bin DEFAULT NULL,
identifier varchar(25) COLLATE utf8mb4_bin DEFAULT NULL,
liveid varchar(21) COLLATE utf8mb4_bin DEFAULT NULL,
xblid varchar(21) COLLATE utf8mb4_bin DEFAULT NULL,
discord varchar(30) COLLATE utf8mb4_bin DEFAULT NULL,
Expand All @@ -35,8 +35,8 @@ CREATE TABLE IF NOT EXISTS banlisthistory (
DROP TABLE IF EXISTS baninfo;
CREATE TABLE IF NOT EXISTS baninfo (
id int(11) AUTO_INCREMENT PRIMARY KEY,
identifier varchar(25) COLLATE utf8mb4_bin DEFAULT NULL,
license varchar(50) COLLATE utf8mb4_bin DEFAULT NULL,
identifier varchar(25) COLLATE utf8mb4_bin DEFAULT NULL,
liveid varchar(21) COLLATE utf8mb4_bin DEFAULT NULL,
xblid varchar(21) COLLATE utf8mb4_bin DEFAULT NULL,
discord varchar(30) COLLATE utf8mb4_bin DEFAULT NULL,
Expand Down

0 comments on commit c1fd490

Please sign in to comment.