Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Commit

Permalink
Fix key max length is 1000 bytes for mysql, plus fields length consis…
Browse files Browse the repository at this point in the history
…tency
  • Loading branch information
cdujeu committed Apr 3, 2014
1 parent ee8d569 commit 9571212
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/src/plugins/conf.sql/create.mysql
Expand Up @@ -30,8 +30,8 @@ CREATE TABLE IF NOT EXISTS ajxp_user_bookmarks (
CREATE TABLE IF NOT EXISTS ajxp_repo (
uuid VARCHAR(33) PRIMARY KEY,
parent_uuid VARCHAR(33) default NULL,
owner_user_id VARCHAR(50) default NULL,
child_user_id VARCHAR(50) default NULL,
owner_user_id VARCHAR(255) default NULL,
child_user_id VARCHAR(255) default NULL,
path VARCHAR(255),
display VARCHAR(255),
accessType VARCHAR(20),
Expand Down Expand Up @@ -80,7 +80,7 @@ CREATE TABLE IF NOT EXISTS ajxp_simple_store (
);

CREATE TABLE IF NOT EXISTS ajxp_user_teams (
team_id VARCHAR(255) NOT NULL,
team_id VARCHAR(70) NOT NULL,
user_id varchar(255) NOT NULL,
team_label VARCHAR(255) NOT NULL,
owner_id varchar(255) NOT NULL,
Expand Down

0 comments on commit 9571212

Please sign in to comment.