mirror of https://github.com/requarks/wiki
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
488 B
18 lines
488 B
exports.up = knex => {
|
|
return knex.schema
|
|
.createTable('pageLinks', table => {
|
|
table.increments('id').primary()
|
|
table.integer('pageId').unsigned().references('id').inTable('pages').onDelete('CASCADE')
|
|
table.string('path').notNullable()
|
|
table.string('localeCode', 5).notNullable()
|
|
})
|
|
.table('pageLinks', table => {
|
|
table.index(['path', 'localeCode'])
|
|
})
|
|
}
|
|
|
|
exports.down = knex => {
|
|
return knex.schema
|
|
.dropTableIfExists('pageLinks')
|
|
}
|