34 lines
741 B
TypeScript
34 lines
741 B
TypeScript
|
import * as Sequelize from 'sequelize'
|
||
|
|
||
|
async function up (utils: {
|
||
|
transaction: Sequelize.Transaction
|
||
|
queryInterface: Sequelize.QueryInterface
|
||
|
sequelize: Sequelize.Sequelize
|
||
|
db: any
|
||
|
}): Promise<void> {
|
||
|
{
|
||
|
const query = `
|
||
|
CREATE TABLE IF NOT EXISTS "actorCustomPage" (
|
||
|
"id" serial,
|
||
|
"content" TEXT,
|
||
|
"type" varchar(255) NOT NULL,
|
||
|
"actorId" integer NOT NULL REFERENCES "actor" ("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)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function down (options) {
|
||
|
throw new Error('Not implemented.')
|
||
|
}
|
||
|
|
||
|
export {
|
||
|
up,
|
||
|
down
|
||
|
}
|