Skip to content

Commit c96e033

Browse files
committed
Type in Columns table creation
1 parent f6b25ff commit c96e033

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CommonData/databaseinterface.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const std::string DatabaseInterface::_dbConstructionSql =
1616
"CREATE TABLE Filters ( id INTEGER PRIMARY KEY, dataSet INT, rFilter TEXT, generatedFilter TEXT, constructorJson TEXT, constructorR TEXT, errorMsg TEXT"
1717
", revision INT DEFAULT 0, FOREIGN KEY(dataSet) REFERENCES DataSets(id));\n"
1818
"CREATE TABLE Columns ( id INTEGER PRIMARY KEY, dataSet INT, name TEXT, title TEXT, description TEXT, columnType TEXT, colIdx INT, isComputed INT, invalidated INT NULL, "
19-
"codeType TEXT NULL, rCode TEXT NULL, error TEXT NULL, constructorJson TEXT NULL"
19+
"codeType TEXT NULL, rCode TEXT NULL, error TEXT NULL, constructorJson TEXT NULL, "
2020
"analysisId INT NULL, revision INT DEFAULT 0, FOREIGN KEY(dataSet) REFERENCES DataSets(id));\n"
2121
"CREATE TABLE Labels ( id INTEGER PRIMARY KEY, columnId INT, value INT, ordering INT, filterAllows INT, label TEXT, originalValueJson TEXT, description TEXT, FOREIGN KEY(columnId) REFERENCES Columns(id));\n";
2222

0 commit comments

Comments
 (0)