Fix translation table name

This commit is contained in:
2021-08-12 00:03:56 +02:00
parent 00604e7d1f
commit e1ed447df8

View File

@@ -1,7 +1,7 @@
import BaseSchema from '@ioc:Adonis/Lucid/Schema'
export default class Translations extends BaseSchema {
protected tableName = 'translation'
protected tableName = 'translations'
public async up () {
this.schema.createTable(this.tableName, (table) => {