Completed
Push — master ( 00aa99...417518 )
by Reza
17s queued 12s
created
database/migrations/cruds_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('cruds', function (Blueprint $table) {
16
+        Schema::create('cruds', function(Blueprint $table) {
17 17
             $table->id();
18 18
             $table->string('name')->unique();
19 19
             $table->string('model')->unique();
Please login to merge, or discard this patch.
database/migrations/panel_admins_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('panel_admins', function (Blueprint $table) {
16
+        Schema::create('panel_admins', function(Blueprint $table) {
17 17
             $table->id();
18 18
             $table->foreignId('user_id')->constrained();
19 19
             $table->boolean('is_superuser');
Please login to merge, or discard this patch.