diff --git a/extensions/suspend/migrations/2015_05_11_000000_add_suspended_until_to_users_table.php b/extensions/suspend/migrations/2015_05_11_000000_add_suspended_until_to_users_table.php index ac4c4e2e3..73fd2312e 100644 --- a/extensions/suspend/migrations/2015_05_11_000000_add_suspended_until_to_users_table.php +++ b/extensions/suspend/migrations/2015_05_11_000000_add_suspended_until_to_users_table.php @@ -22,7 +22,7 @@ class AddSuspendedUntilToUsersTable extends Migration public function up() { $this->schema->table('users', function (Blueprint $table) { - $table->dateTime('suspended_until')->nullable(); + $table->dateTime('suspend_until')->nullable(); }); } @@ -34,7 +34,7 @@ class AddSuspendedUntilToUsersTable extends Migration public function down() { $this->schema->table('users', function (Blueprint $table) { - $table->dropColumn('suspended_until'); + $table->dropColumn('suspend_until'); }); } }