mirror of
https://github.com/ArthurDanjou/artdanj-api.git
synced 2026-01-14 12:14:33 +01:00
Change date type to string in migration
This commit is contained in:
@@ -7,7 +7,7 @@ export default class CommandsRuns extends BaseSchema {
|
||||
this.schema.createTable(this.tableName, (table) => {
|
||||
table.increments('id').primary()
|
||||
table.bigInteger('commands')
|
||||
table.date('date')
|
||||
table.string('date')
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ export default class BuildsRuns extends BaseSchema {
|
||||
this.schema.createTable(this.tableName, (table) => {
|
||||
table.increments('id').primary()
|
||||
table.bigInteger('builds')
|
||||
table.timestamp('date')
|
||||
table.string('date')
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ export default class DevelopmentHours extends BaseSchema {
|
||||
this.schema.createTable(this.tableName, (table) => {
|
||||
table.increments('id').primary()
|
||||
table.double('seconds')
|
||||
table.date('date')
|
||||
table.string('date')
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user