Skip to content

Commit

Permalink
Fixed incorrect starting increment values in SQL.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jamesyps authored Jul 10, 2017
1 parent 98877a3 commit f25ca67
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions perch/addons/apps/redfinch_optim/sql/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ CREATE TABLE `__PREFIX__redfinch_optim_logs` (
`logMessage` text NOT NULL,
`logCreated` datetime NOT NULL,
PRIMARY KEY (`logID`)
) ENGINE=InnoDB AUTO_INCREMENT=133 DEFAULT CHARSET=utf8;
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;

CREATE TABLE `__PREFIX__redfinch_optim_settings` (
`settingKey` varchar(255) NOT NULL DEFAULT '',
Expand All @@ -22,4 +22,4 @@ CREATE TABLE `__PREFIX__redfinch_optim_tasks` (
`taskStart` int(11) unsigned NOT NULL DEFAULT '0',
`taskEnd` int(11) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`taskID`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8;
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;

0 comments on commit f25ca67

Please sign in to comment.