Skip to content

Commit

Permalink
Merge pull request #35 from askdkc/fix-migration-file
Browse files Browse the repository at this point in the history
Add Drop Table to migration file
  • Loading branch information
askdkc authored Dec 19, 2022
2 parents 84e6158 + de67560 commit 1c0db13
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions database/migrations/create_csv_imports_table.php.stub
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,14 @@ return new class extends Migration
$table->timestamps();
});
}

/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('csv_imports');
}
};

0 comments on commit 1c0db13

Please sign in to comment.