
* New field added in the `video` table + migration script * `publishedAt` updated to NOW when privacy changes from private to public/unlisted (default = NOW) * Models updated to handle the new attribute * Client interface updated to use `publishedAt` instead of `createdAt` except in My Account > My Videos view
33 lines
608 B
TypeScript
33 lines
608 B
TypeScript
import * as Sequelize from 'sequelize'
|
|
|
|
async function up (utils: {
|
|
transaction: Sequelize.Transaction,
|
|
queryInterface: Sequelize.QueryInterface,
|
|
sequelize: Sequelize.Sequelize
|
|
}): Promise<void> {
|
|
|
|
{
|
|
const data = {
|
|
type: Sequelize.DATE,
|
|
allowNull: false,
|
|
defaultValue: Sequelize.NOW
|
|
}
|
|
await utils.queryInterface.addColumn('video', 'publishedAt', data)
|
|
}
|
|
|
|
{
|
|
const query = 'UPDATE video SET "publishedAt" = video."createdAt"'
|
|
await utils.sequelize.query(query)
|
|
}
|
|
|
|
}
|
|
|
|
function down (options) {
|
|
throw new Error('Not implemented.')
|
|
}
|
|
|
|
export {
|
|
up,
|
|
down
|
|
}
|