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 86453c8
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ object Experiment extends PersistedAPI[Experiment] {
override def createTable()(implicit conn: Connection): Unit = if (!tableExists) {
SQL( s"""
CREATE TABLE experiment (
id INTEGER NOT NULL,
name VARCHAR(63) NOT NULL,
suite VARCHAR(63) NOT NULL,
system VARCHAR(63) NOT NULL,
id INTEGER NOT NULL,
name VARCHAR(127) NOT NULL,
suite VARCHAR(63) NOT NULL,
system VARCHAR(63) NOT NULL,
PRIMARY KEY (id),
FOREIGN KEY (system) REFERENCES system(id) ON DELETE RESTRICT
)""").execute()
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 86453c8

Please sign in to comment.