Skip to content

Commit

Permalink
Making SQLite happy
Browse files Browse the repository at this point in the history
  • Loading branch information
fulopattila122 committed Jun 17, 2024
1 parent 0f1ea9f commit 138b3af
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,17 @@ public function down(): void
{
Schema::table('taxons', function (Blueprint $table) {
$table->dropColumn('subtitle');
});
Schema::table('taxons', function (Blueprint $table) {
$table->dropColumn('excerpt');
});
Schema::table('taxons', function (Blueprint $table) {
$table->dropColumn('description');
});
Schema::table('taxons', function (Blueprint $table) {
$table->dropColumn('top_content');
});
Schema::table('taxons', function (Blueprint $table) {
$table->dropColumn('bottom_content');
});
}
Expand Down

0 comments on commit 138b3af

Please sign in to comment.