3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-03-19 07:20:00 +00:00
zeppelin/src/migrations/1547293464842-CreatePingableRolesTable.ts

50 lines
1.2 KiB
TypeScript
Raw Normal View History

2019-01-12 14:09:11 +02:00
import { MigrationInterface, QueryRunner, Table } from "typeorm";
export class CreatePingableRolesTable1547293464842 implements MigrationInterface {
public async up(queryRunner: QueryRunner): Promise<any> {
await queryRunner.createTable(
new Table({
name: "pingable_roles",
columns: [
{
name: "id",
type: "int",
unsigned: true,
isGenerated: true,
generationStrategy: "increment",
isPrimary: true
},
{
name: "guild_id",
type: "bigint",
unsigned: true
},
{
name: "channel_id",
type: "bigint",
unsigned: true
},
{
name: "role_id",
type: "bigint",
unsigned: true
}
],
indices: [
{
columnNames: ["guild_id", "channel_id"]
},
{
columnNames: ["guild_id", "channel_id", "role_id"],
isUnique: true
}
]
})
);
}
public async down(queryRunner: QueryRunner): Promise<any> {
await queryRunner.dropTable("pingable_roles", true);
}
}