1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-08-13 22:12:50 +02:00

Don't create a default folder

This commit is contained in:
Laurent Cozic
2017-07-01 16:10:39 +01:00
parent 72bfda5152
commit 6e8cbba7fd

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');