forked from qt-creator/qt-creator
Clang: Rename FileInformation in FileStatus
It's more near to the Unix convention and it has a plural too. Change-Id: I53f85911d8fcbaadba9947c70e9a375dc6995ed5 Reviewed-by: Ivan Donchevskii <ivan.donchevskii@qt.io>
This commit is contained in:
@@ -48,7 +48,7 @@ public:
|
||||
createProjectPartsTable();
|
||||
createProjectPartsSourcesTable();
|
||||
createUsedMacrosTable();
|
||||
createFileInformationsTable();
|
||||
createFileStatusesTable();
|
||||
createSourceDependenciesTable();
|
||||
|
||||
transaction.commit();
|
||||
@@ -148,11 +148,11 @@ public:
|
||||
table.initialize(database);
|
||||
}
|
||||
|
||||
void createFileInformationsTable()
|
||||
void createFileStatusesTable()
|
||||
{
|
||||
Sqlite::Table table;
|
||||
table.setUseIfNotExists(true);
|
||||
table.setName("fileInformations");
|
||||
table.setName("fileStatuses");
|
||||
table.addColumn("sourceId", Sqlite::ColumnType::Integer, Sqlite::Contraint::PrimaryKey);
|
||||
table.addColumn("size", Sqlite::ColumnType::Integer);
|
||||
table.addColumn("lastModified", Sqlite::ColumnType::Integer);
|
||||
|
||||
Reference in New Issue
Block a user