- error in migrating file 2021_02_26_153027_create_dataset_identifiers_table.php

This commit is contained in:
Arno Kaimbacher 2021-03-01 16:36:34 +01:00
parent 8f0b12fbf0
commit e7738f432b

View File

@ -13,7 +13,7 @@ class CreateDatasetIdentifiersTable extends Migration
*/ */
public function up() public function up()
{ {
Schema::table('dataset_identifiers', function (Blueprint $table) { Schema::create('dataset_identifiers', function (Blueprint $table) {
// primary key // primary key
$table->increments('id'); $table->increments('id');
@ -45,8 +45,6 @@ class CreateDatasetIdentifiersTable extends Migration
*/ */
public function down() public function down()
{ {
Schema::table('dataset_identifiers', function (Blueprint $table) { Schema::dropIfExists('dataset_identifiers');
//
});
} }
} }