You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
main
${ noResults }
32 lines
766 B
TypeScript
32 lines
766 B
TypeScript
import * as Sequelize from 'sequelize'
|
|||
|
|||
async function up (utils: {
|
|||
transaction: Sequelize.Transaction
|
|||
queryInterface: Sequelize.QueryInterface
|
|||
sequelize: Sequelize.Sequelize
|
|||
}): Promise<void> {
|
|||
{
|
|||
const query = `
|
|||
CREATE TABLE IF NOT EXISTS "videoPassword" (
|
|||
"id" SERIAL,
|
|||
"password" VARCHAR(255) NOT NULL,
|
|||
"videoId" INTEGER NOT NULL REFERENCES "video" ("id") ON DELETE CASCADE ON UPDATE CASCADE,
|
|||
"createdAt" TIMESTAMP WITH TIME ZONE NOT NULL,
|
|||
"updatedAt" TIMESTAMP WITH TIME ZONE NOT NULL,
|
|||
PRIMARY KEY ("id")
|
|||
);
|
|||
`
|
|||
|
|||
await utils.sequelize.query(query, { transaction : utils.transaction })
|
|||
}
|
|||
}
|
|||
|
|||
function down (options) {
|
|||
throw new Error('Not implemented.')
|
|||
}
|
|||
|
|||
export {
|
|||
up,
|
|||
down
|
|||
}
|