mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-01-17 13:38:20 +01:00
Fixes #1608
This commit is contained in:
parent
93dcf5b68a
commit
045667dce8
@ -23,7 +23,11 @@ class AlterTableComponentGroupsMakeColumnInteger extends Migration
|
||||
public function up()
|
||||
{
|
||||
Schema::table('component_groups', function (Blueprint $table) {
|
||||
$table->integer('collapsed')->unsigned()->default(2)->change();
|
||||
$table->dropcolumn('collapsed');
|
||||
});
|
||||
|
||||
Schema::table('component_groups', function (Blueprint $table) {
|
||||
$table->integer('collapsed')->unsigned()->default(2)->after('order');
|
||||
});
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user