Fix migration

This commit is contained in:
2021-08-12 00:01:14 +02:00
parent 13db2dd1e4
commit 00604e7d1f

View File

@@ -8,7 +8,7 @@ export default class Translations extends BaseSchema {
table.increments('id') table.increments('id')
table.string('code').notNullable() table.string('code').notNullable()
table.string('french').defaultTo('Traduction manquante') table.string('french').defaultTo('Traduction manquante')
table.string('code').defaultTo('Missing translation') table.string('english').defaultTo('Missing translation')
table.timestamps(true, true) table.timestamps(true, true)
}) })
} }