New project structure
Beta of extract.js for extracting english locale
This commit is contained in:
parent
e18d2b2f84
commit
2edbd67205
247 changed files with 6405 additions and 4237 deletions
15
server/setup/sql/upgrade-00013.sql
Normal file
15
server/setup/sql/upgrade-00013.sql
Normal file
|
@ -0,0 +1,15 @@
|
|||
# Header section
|
||||
# Define incrementing schema version number
|
||||
SET @schema_version = '13';
|
||||
|
||||
-- {{#each tables.campaign}}
|
||||
|
||||
# Adds separate index for 'subscription' on campaign messages table
|
||||
CREATE INDEX subscription_index ON `{{this}}` (`subscription`);
|
||||
|
||||
-- {{/each}}
|
||||
|
||||
# Footer section
|
||||
LOCK TABLES `settings` WRITE;
|
||||
INSERT INTO `settings` (`key`, `value`) VALUES('db_schema_version', @schema_version) ON DUPLICATE KEY UPDATE `value`=@schema_version;
|
||||
UNLOCK TABLES;
|
Loading…
Add table
Add a link
Reference in a new issue