Skip to content

Commit

Permalink
reverted timezone
Browse files Browse the repository at this point in the history
  • Loading branch information
amowogbaje committed Aug 9, 2024
1 parent a8cbee1 commit 508fac8
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@ public function up(): void
Schema::table('timezones', function (Blueprint $table) {
$table->renameColumn('name', 'timezone');
$table->renameColumn('offset', 'gmtoffset');
// $table->string('description')->after('gmtoffset');
$table->string('description')->after('gmtoffset');
});
}

public function down(): void
{
Schema::table('timezones', function (Blueprint $table) {
$table->dropColumn('timezone');
// $table->dropColumn('gmtoffset');
// $table->dropColumn('description');
$table->dropColumn('gmtoffset');
$table->dropColumn('description');
});
}
};

0 comments on commit 508fac8

Please sign in to comment.