3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-03-18 23:09:59 +00:00
zeppelin/backend/src/migrations/1630837718830-CreateApiAuditLogTable.ts

59 lines
1.4 KiB
TypeScript
Raw Normal View History

2021-09-05 13:58:08 +03:00
import { MigrationInterface, QueryRunner, Table, TableIndex } from "typeorm";
export class CreateApiAuditLogTable1630837718830 implements MigrationInterface {
public async up(queryRunner: QueryRunner): Promise<void> {
await queryRunner.createTable(
new Table({
name: "api_audit_log",
columns: [
{
name: "id",
type: "int",
unsigned: true,
isPrimary: true,
isGenerated: true,
generationStrategy: "increment",
},
{
name: "guild_id",
type: "bigint",
},
{
name: "author_id",
type: "bigint",
},
{
name: "event_type",
type: "varchar",
length: "255",
},
{
name: "event_data",
type: "longtext",
},
{
name: "created_at",
type: "datetime",
default: "(NOW())",
},
],
indices: [
new TableIndex({
columnNames: ["guild_id", "author_id"],
}),
new TableIndex({
columnNames: ["guild_id", "event_type"],
}),
new TableIndex({
columnNames: ["created_at"],
}),
],
}),
);
}
public async down(queryRunner: QueryRunner): Promise<void> {
await queryRunner.dropTable("api_audit_log");
}
}