Skip to content

Commit

Permalink
Installation SQL script: timestamp(14) changed to timestamp.
Browse files Browse the repository at this point in the history
  • Loading branch information
olegiv committed Feb 3, 2015
1 parent d2c4ff9 commit 94efc80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions install/install-mysql.sql
Expand Up @@ -207,7 +207,7 @@ CREATE TABLE sitellite_user (
tips enum('on','off') NOT NULL default 'on',
lang varchar(12) NOT NULL default '',
session_id varchar(32) default NULL,
expires timestamp(14) NOT NULL,
expires timestamp NOT NULL,
company varchar(48) NOT NULL default '',
position varchar(48) NOT NULL default '',
website varchar(72) NOT NULL default '',
Expand Down Expand Up @@ -242,7 +242,7 @@ CREATE TABLE sitellite_user (
CREATE TABLE sitellite_user_session (
username varchar(48) NOT NULL default '',
session_id varchar(32) NOT NULL default '',
expires timestamp(14) NOT NULL,
expires timestamp NOT NULL,
PRIMARY KEY (username, session_id)
);

Expand Down

0 comments on commit 94efc80

Please sign in to comment.