3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-10 12:25:02 +00:00

Start work on API audit logs

This commit is contained in:
Dragory 2021-09-05 13:58:08 +03:00
parent 947a49761e
commit ff648e7071
No known key found for this signature in database
GPG key ID: 5F387BA66DF8AAC1
4 changed files with 146 additions and 0 deletions

View file

@ -0,0 +1,58 @@
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");
}
}