12345678910111213 |
- exports.up = knex => {
- return knex.schema
- .table('locales', table => {
- table.integer('availability').notNullable().defaultTo(0)
- })
- }
- exports.down = knex => {
- return knex.schema
- .table('locales', table => {
- table.dropColumn('availability')
- })
- }
|