mirror of
https://github.com/documize/community.git
synced 2025-07-22 22:59:43 +02:00
Enable searching for SQL Server storage provider
This commit is contained in:
parent
a41f43c380
commit
e98f7b9218
10 changed files with 1040 additions and 783 deletions
|
@ -71,15 +71,6 @@ let constants = EmberObject.extend({
|
|||
ReviewLabel: 'Changes require approval before publication'
|
||||
},
|
||||
|
||||
// Database type
|
||||
StorageProvider: { // eslint-disable-line ember/avoid-leaking-state-in-ember-objects
|
||||
SQLServer: 'SQLServer',
|
||||
PostgreSQL: 'PostgreSQL',
|
||||
Percona: 'Percona',
|
||||
MariaDB: 'MariaDB',
|
||||
MySQL: 'MySQL',
|
||||
},
|
||||
|
||||
// Document
|
||||
ApprovalType: { // eslint-disable-line ember/avoid-leaking-state-in-ember-objects
|
||||
None: 0,
|
||||
|
@ -145,10 +136,13 @@ let constants = EmberObject.extend({
|
|||
Publish: 7,
|
||||
},
|
||||
|
||||
// Meta
|
||||
// Database type
|
||||
StoreProvider: { // eslint-disable-line ember/avoid-leaking-state-in-ember-objects
|
||||
MySQL: 'MySQL',
|
||||
PostgreSQL: 'PostgreSQL',
|
||||
Percona: 'Percona',
|
||||
MariaDB: 'MariaDB',
|
||||
SQLServer: 'SQLServer',
|
||||
},
|
||||
|
||||
// Product is where we try to balance the fine line between useful open core
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue