mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2024-11-24 09:40:28 -06:00
Add banner migrations
This commit is contained in:
parent
213e30ef90
commit
282695e699
@ -24,7 +24,7 @@ import { CONFIG, registerConfigChangedHandler } from './config'
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
const LAST_MIGRATION_VERSION = 625
|
||||
const LAST_MIGRATION_VERSION = 630
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
|
50
server/initializers/migrations/0630-banner.ts
Normal file
50
server/initializers/migrations/0630-banner.ts
Normal file
@ -0,0 +1,50 @@
|
||||
import * as Sequelize from 'sequelize'
|
||||
|
||||
async function up (utils: {
|
||||
transaction: Sequelize.Transaction
|
||||
queryInterface: Sequelize.QueryInterface
|
||||
sequelize: Sequelize.Sequelize
|
||||
db: any
|
||||
}): Promise<void> {
|
||||
|
||||
{
|
||||
await utils.sequelize.query(`ALTER TABLE "avatar" RENAME to "actorImage"`)
|
||||
}
|
||||
|
||||
{
|
||||
const data = {
|
||||
type: Sequelize.INTEGER,
|
||||
defaultValue: null,
|
||||
allowNull: true
|
||||
}
|
||||
await utils.queryInterface.addColumn('actorImage', 'type', data)
|
||||
}
|
||||
|
||||
{
|
||||
await utils.sequelize.query(`UPDATE "actorImage" SET "type" = 1`)
|
||||
}
|
||||
|
||||
{
|
||||
const data = {
|
||||
type: Sequelize.INTEGER,
|
||||
defaultValue: null,
|
||||
allowNull: false
|
||||
}
|
||||
await utils.queryInterface.changeColumn('actorImage', 'type', data)
|
||||
}
|
||||
|
||||
{
|
||||
await utils.sequelize.query(
|
||||
`ALTER TABLE "actor" ADD COLUMN "bannerId" INTEGER REFERENCES "actorImage" ("id") ON DELETE SET NULL ON UPDATE CASCADE`
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
function down (options) {
|
||||
throw new Error('Not implemented.')
|
||||
}
|
||||
|
||||
export {
|
||||
up,
|
||||
down
|
||||
}
|
Loading…
Reference in New Issue
Block a user