aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/models/migrations.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/models/migrations.ts')
-rw-r--r--server/models/migrations.ts27
1 files changed, 0 insertions, 27 deletions
diff --git a/server/models/migrations.ts b/server/models/migrations.ts
deleted file mode 100644
index 6c11332a1..000000000
--- a/server/models/migrations.ts
+++ /dev/null
@@ -1,27 +0,0 @@
1import { ModelAttributeColumnOptions } from 'sequelize'
2
3declare namespace Migration {
4 interface Boolean extends ModelAttributeColumnOptions {
5 defaultValue: boolean | null
6 }
7
8 interface String extends ModelAttributeColumnOptions {
9 defaultValue: string | null
10 }
11
12 interface Integer extends ModelAttributeColumnOptions {
13 defaultValue: number | null
14 }
15
16 interface BigInteger extends ModelAttributeColumnOptions {
17 defaultValue: number | null
18 }
19
20 interface UUID extends ModelAttributeColumnOptions {
21 defaultValue: null
22 }
23}
24
25export {
26 Migration
27}