Skip to content

Commit

Permalink
Fix failing unit test after changes to the testing schemas
Browse files Browse the repository at this point in the history
  • Loading branch information
02JanDal committed Oct 29, 2013
1 parent ec43325 commit c9cdc47
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/createtabletest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ private Q_SLOTS:
"fk_lutPersonGrades_id UUID NOT NULL REFERENCES lutPersonGrades (id) ON DELETE RESTRICT,\n"
"PersonActive BOOLEAN,\n"
"HireRights BOOLEAN,\n"
"UserName VARCHAR(255) UNIQUE\n)" );
"UserName VARCHAR(255) UNIQUE,\n"
"Hired TIMESTAMP WITH TIMEZONE\n)" );
QCOMPARE( Sql::createTableStatement( Sql::Person ), s );
}

Expand Down

0 comments on commit c9cdc47

Please sign in to comment.