Skip to content

Commit

Permalink
update db
Browse files Browse the repository at this point in the history
  • Loading branch information
orvice committed Feb 23, 2016
1 parent 5551810 commit 4c3520f
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions db-160222.sql → db-160223.sql
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
-- ss-panel v3.2
-- Adminer 4.1.0 MySQL dump

SET NAMES utf8;
SET time_zone = '+08:00';
SET time_zone = '+00:00';
SET foreign_key_checks = 0;
SET sql_mode = 'NO_AUTO_VALUE_ON_ZERO';


DROP TABLE IF EXISTS `ss_invite_code`;
CREATE TABLE `ss_invite_code` (
`id` int(11) NOT NULL AUTO_INCREMENT,
Expand All @@ -29,6 +28,7 @@ CREATE TABLE `ss_node` (
`traffic_rate` float NOT NULL DEFAULT '1',
`info` varchar(128) NOT NULL,
`status` varchar(128) NOT NULL,
`offset` int(11) NOT NULL DEFAULT '0',
`sort` int(3) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
Expand Down Expand Up @@ -70,6 +70,7 @@ CREATE TABLE `user` (
`expire_time` int(11) NOT NULL DEFAULT '0',
`method` varchar(64) NOT NULL DEFAULT 'rc4-md5',
`is_email_verify` tinyint(4) NOT NULL DEFAULT '0',
`reg_ip` varchar(128) NOT NULL DEFAULT '127.0.0.1',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

Expand Down Expand Up @@ -99,4 +100,4 @@ CREATE TABLE `user_traffic_log` (
) ENGINE=InnoDB DEFAULT CHARSET=utf8;


-- 2016-02-22 15:55:25
-- 2016-02-23 13:47:11

0 comments on commit 4c3520f

Please sign in to comment.