mirror of
https://github.com/FoxxMD/context-mod.git
synced 2026-01-12 07:08:02 -05:00
* Reworked many mappings to fix cascades and relationships * Add constructors to entities where useful * Renamed many db entities classes to be different than interface names * Re-generated initial migration and added convenience npm script for running it * Added ormconfig for typeorm 3 cli * Create all run/check/rule/action premises (static info) on manager creation
15 lines
276 B
JSON
15 lines
276 B
JSON
{
|
|
"type": "sqljs",
|
|
"autoSave": true,
|
|
"location": "database.sqlite",
|
|
"synchronize": true,
|
|
"logging": "all",
|
|
"entities": [
|
|
"src/Common/Entities/**/*.js"
|
|
],
|
|
"migrations": [
|
|
"src/Common/Migrations/Database/**/*.js"
|
|
],
|
|
"subscribers": []
|
|
}
|