1
0
Fork 0
peertube/server/initializers/migrations/0035-video-licence.ts

32 lines
648 B
TypeScript
Raw Normal View History

import * as Sequelize from 'sequelize'
import { Migration } from '../../models/migrations'
function up (utils: {
2020-01-31 15:56:52 +00:00
transaction: Sequelize.Transaction
queryInterface: Sequelize.QueryInterface
sequelize: Sequelize.Sequelize
}): Promise<void> {
2017-03-27 18:53:11 +00:00
const q = utils.queryInterface
const data = {
type: Sequelize.INTEGER,
allowNull: false,
defaultValue: 0
} as Migration.Integer
2017-03-27 18:53:11 +00:00
return q.addColumn('Videos', 'licence', data)
.then(() => {
2017-03-27 18:53:11 +00:00
data.defaultValue = null
return q.changeColumn('Videos', 'licence', data)
})
2017-03-27 18:53:11 +00:00
}
function down (options) {
2017-03-27 18:53:11 +00:00
throw new Error('Not implemented.')
}
2017-05-15 20:22:03 +00:00
export {
up,
down
}