1
0
Fork 0
peertube/server/initializers/migrations/0050-video-language.ts

28 lines
505 B
TypeScript
Raw Normal View History

import * as Sequelize from 'sequelize'
import * as Promise from 'bluebird'
function up (utils: {
transaction: Sequelize.Transaction,
queryInterface: Sequelize.QueryInterface,
sequelize: Sequelize.Sequelize
}): Promise<void> {
2017-04-07 10:13:37 +00:00
const q = utils.queryInterface
const data = {
type: Sequelize.INTEGER,
allowNull: true,
defaultValue: null
}
return q.addColumn('Videos', 'language', data)
2017-04-07 10:13:37 +00:00
}
function down (options) {
2017-04-07 10:13:37 +00:00
throw new Error('Not implemented.')
}
2017-05-15 20:22:03 +00:00
export {
up,
down
}