paradigm-core
Version:
Paradigm Core Modules
27 lines (26 loc) • 476 B
JavaScript
module.exports = {
tables: [
{
action: 'create',
table: 'sitemaps',
indexes: [
'applicationId',
'organizationId'
]
},
{
action: 'create',
table: 'link_organizations_sitemaps',
indexes: [
'organizationId',
'sitemapId'
],
compoundIndexes: [
{
name: 'link_organization_sitemap',
indexes: ['organizationId', 'sitemapId']
}
]
},
]
}