Skip to content

Commit

Permalink
Fixed Task "Increase default quota" of #162
Browse files Browse the repository at this point in the history
  • Loading branch information
cmllr committed May 30, 2015
1 parent 5983bf4 commit 5c442e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dump.sql
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ CREATE TABLE IF NOT EXISTS `Bans` (
PRIMARY KEY (`Id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
INSERT INTO `User` (`id`, `loginName`, `displayName`, `mailAddress`, `registrationDateTime`, `lastLoginDateTime`, `passwordHash`, `isEnabled`, `contingentInByte`, `roleID`, `failedLogins`) VALUES
(1, 'test', 'Administrator', '[email protected]', '2014-09-21 15:33:45', '2014-10-18 12:48:49', '$2y$11$.Vz58QMNFzqfUsRIrzXkAesBXW8kGSNfwOMmv3tURMqf3IdArZypm', 1, 5242880, 1, 0);
(1, 'test', 'Administrator', '[email protected]', '2014-09-21 15:33:45', '2014-10-18 12:48:49', '$2y$11$.Vz58QMNFzqfUsRIrzXkAesBXW8kGSNfwOMmv3tURMqf3IdArZypm', 1, 524288000, 1, 0);
CREATE TABLE IF NOT EXISTS `Settings` (
`ID` int(11) NOT NULL AUTO_INCREMENT,
`SettingName` text COLLATE utf8_bin NOT NULL,
Expand Down
2 changes: 1 addition & 1 deletion Dumps/mysql.sql
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ CREATE TABLE IF NOT EXISTS `Bans` (
PRIMARY KEY (`Id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
INSERT INTO `User` (`id`, `loginName`, `displayName`, `mailAddress`, `registrationDateTime`, `lastLoginDateTime`, `passwordHash`, `isEnabled`, `contingentInByte`, `roleID`, `failedLogins`) VALUES
(1, 'test', 'Administrator', '[email protected]', '2014-09-21 15:33:45', '2014-10-18 12:48:49', '$2y$11$.Vz58QMNFzqfUsRIrzXkAesBXW8kGSNfwOMmv3tURMqf3IdArZypm', 1, 5242880, 1, 0);
(1, 'test', 'Administrator', '[email protected]', '2014-09-21 15:33:45', '2014-10-18 12:48:49', '$2y$11$.Vz58QMNFzqfUsRIrzXkAesBXW8kGSNfwOMmv3tURMqf3IdArZypm', 1, 524288000, 1, 0);
CREATE TABLE IF NOT EXISTS `Settings` (
`ID` int(11) NOT NULL AUTO_INCREMENT,
`SettingName` text COLLATE utf8_bin NOT NULL,
Expand Down

0 comments on commit 5c442e3

Please sign in to comment.