- error in migrating file 2021_02_26_153027_create_dataset_identifiers_table.php
This commit is contained in:
parent
8f0b12fbf0
commit
e7738f432b
|
@ -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');
|
||||||
//
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user