@@ -21,7 +21,7 @@ |
||
21 | 21 | */ |
22 | 22 | public function up() |
23 | 23 | { |
24 | - Schema::create(config('easy_panel.database.crud_table'), function (Blueprint $table) { |
|
24 | + Schema::create(config('easy_panel.database.crud_table'), function(Blueprint $table) { |
|
25 | 25 | $table->id(); |
26 | 26 | $table->string('name')->unique(); |
27 | 27 | $table->string('model')->unique(); |
@@ -20,7 +20,7 @@ |
||
20 | 20 | */ |
21 | 21 | public function up() |
22 | 22 | { |
23 | - Schema::create(config('easy_panel.database.panel_admin_table'), function (Blueprint $table) { |
|
23 | + Schema::create(config('easy_panel.database.panel_admin_table'), function(Blueprint $table) { |
|
24 | 24 | $table->id(); |
25 | 25 | $table->foreignId('user_id')->constrained(); |
26 | 26 | $table->boolean('is_superuser'); |