Don't create a default folder

pull/41/head
Laurent Cozic 2017-07-01 16:10:39 +01:00
parent 72bfda5152
commit 6e8cbba7fd
1 changed files with 1 additions and 1 deletions

View File

@ -490,7 +490,7 @@ class Database {
let queries = this.wrapQueries(this.sqlStringToLines(structureSql));
queries.push(this.wrapQuery('INSERT INTO settings (`key`, `value`, `type`) VALUES ("clientId", "' + uuid.create() + '", "' + Database.enumId('settings', 'string') + '")'));
queries.push(Database.defaultFolderQuery());
//queries.push(Database.defaultFolderQuery());
return this.transactionExecBatch(queries).then(() => {
this.logger().info('Database schema created successfully');