Skip to content
Snippets Groups Projects

Fix bug with release year

Merged Carlos Terrero Orpí requested to merge 31-fix-database-swap-year-for-int into main
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -23,7 +23,7 @@ public function up()
$table->string('category');
$table->decimal('rating', 3, 1)->unsigned();
$table->string('language');
$table->year('release_year');
$table->integer('release_year');
$table->text('description');
$table->string('picture');
$table->enum('type', ['Pelicula', 'Serie']);
Loading