add excused state to protocol presence
This commit is contained in:
parent
a4b26013a7
commit
4dd6fa6d8a
5 changed files with 28 additions and 0 deletions
21
src/migrations/1737287798828-protocolPresenceExcuse.ts
Normal file
21
src/migrations/1737287798828-protocolPresenceExcuse.ts
Normal file
|
@ -0,0 +1,21 @@
|
|||
import { MigrationInterface, QueryRunner, TableColumn } from "typeorm";
|
||||
|
||||
export class ProtocolPresenceExcuse1737287798828 implements MigrationInterface {
|
||||
name = "ProtocolPresenceExcuse1737287798828";
|
||||
|
||||
public async up(queryRunner: QueryRunner): Promise<void> {
|
||||
await queryRunner.addColumn(
|
||||
"protocol_presence",
|
||||
new TableColumn({
|
||||
name: "excused",
|
||||
type: "tinyint",
|
||||
default: "1",
|
||||
isNullable: false,
|
||||
})
|
||||
);
|
||||
}
|
||||
|
||||
public async down(queryRunner: QueryRunner): Promise<void> {
|
||||
await queryRunner.dropColumn("protocol_presence", "excused");
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue