This commit is contained in:
2021-06-30 20:54:21 +02:00
parent 3d3c48a312
commit af0bcdb095
9 changed files with 23 additions and 10 deletions

View File

@@ -8,7 +8,7 @@ export default class Posts extends BaseSchema {
table.increments('id').primary()
table.string('slug').notNullable()
table.integer('likes').notNullable()
table.timestamps(true)
table.timestamps()
})
}