Skip to content

Commit

Permalink
fix: comment column
Browse files Browse the repository at this point in the history
  • Loading branch information
omarciovsena committed Jan 11, 2019
1 parent 4b45939 commit c0d804c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion database/migrations/1532136697805_book_schema.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class BookSchema extends Schema {
table.increments()
table.integer('chapters').notNullable()
table.string('abbrev').notNullable()
table.string('comment').notNullable()
table.text('comment').notNullable()
table.string('group').notNullable()
table.string('testament').notNullable()
table.string('name').notNullable()
Expand Down

0 comments on commit c0d804c

Please sign in to comment.