aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/initializers/migrations/0525-abuse-messages.ts
blob: c8fd7cbcf6c4d603626f687352c4f486c42a17a7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import * as Sequelize from 'sequelize'

async function up (utils: {
  transaction: Sequelize.Transaction
  queryInterface: Sequelize.QueryInterface
  sequelize: Sequelize.Sequelize
}): Promise<void> {
  await utils.sequelize.query(`
    CREATE TABLE IF NOT EXISTS "abuseMessage" (
      "id" serial,
      "message" text NOT NULL,
      "byModerator" boolean NOT NULL,
      "accountId" integer REFERENCES "account" ("id") ON DELETE SET NULL ON UPDATE CASCADE,
      "abuseId" integer NOT NULL REFERENCES "abuse" ("id") ON DELETE CASCADE ON UPDATE CASCADE,
      "createdAt" timestamp WITH time zone NOT NULL,
      "updatedAt" timestamp WITH time zone NOT NULL,
      PRIMARY KEY ("id")
    );
  `)

  const notificationSettingColumns = [ 'abuseStateChange', 'abuseNewMessage' ]

  for (const column of notificationSettingColumns) {
    const data = {
      type: Sequelize.INTEGER,
      defaultValue: null,
      allowNull: true
    }
    await utils.queryInterface.addColumn('userNotificationSetting', column, data)
  }

  {
    const query = 'UPDATE "userNotificationSetting" SET "abuseStateChange" = 3, "abuseNewMessage" = 3'
    await utils.sequelize.query(query)
  }

  for (const column of notificationSettingColumns) {
    const data = {
      type: Sequelize.INTEGER,
      defaultValue: null,
      allowNull: false
    }
    await utils.queryInterface.changeColumn('userNotificationSetting', column, data)
  }
}

function down (options) {
  throw new Error('Not implemented.')
}

export {
  up,
  down
}