Skip to content

Commit

Permalink
Increase experiment name length in result db.
Browse files Browse the repository at this point in the history
  • Loading branch information
derSascha authored and aalexandrov committed Oct 8, 2015
1 parent f867566 commit 73a95cc
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ object Experiment extends PersistedAPI[Experiment] {
SQL( s"""
CREATE TABLE experiment (
id INTEGER NOT NULL,
name VARCHAR(63) NOT NULL,
name VARCHAR(127) NOT NULL,
suite VARCHAR(63) NOT NULL,
system VARCHAR(63) NOT NULL,
PRIMARY KEY (id),
Expand Down Expand Up @@ -116,4 +116,4 @@ object Experiment extends PersistedAPI[Experiment] {
'suite -> x.suite.name,
'system -> x.system.name
)
}
}

0 comments on commit 73a95cc

Please sign in to comment.