Completed
Push — master ( 943fe6...d5ae66 )
by archer
02:53
created
migrations/2019_08_15_022343_create_api_auth_access_events_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
     {
17 17
         $tableName = config('apikey.table_name.api_auth_access_events');
18 18
 
19
-        Schema::create($tableName, function (Blueprint $table) {
19
+        Schema::create($tableName, function(Blueprint $table) {
20 20
             $table->increments('id');
21 21
             $table->string('appid')->comment('Appid');
22 22
             $table->ipAddress('ip_address')->comment('IP');
Please login to merge, or discard this patch.
database/migrations/2019_08_15_022131_create_app_clients_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
     {
17 17
         $tableName = config('apikey.table_name.app_clients');
18 18
 
19
-        Schema::create($tableName, function (Blueprint $table) {
19
+        Schema::create($tableName, function(Blueprint $table) {
20 20
             $table->increments('id');
21 21
             $table->string('name')->comment('AppName');
22 22
             $table->string('appid')->comment('Appid');
Please login to merge, or discard this patch.
migrations/2019_08_16_072139_create_api_auth_oprate_event_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
     {
17 17
         $tableName = config('apikey.table_name.api_auth_oprate_events');
18 18
 
19
-        Schema::create($tableName, function (Blueprint $table) {
19
+        Schema::create($tableName, function(Blueprint $table) {
20 20
             $table->increments('id');
21 21
             $table->unsignedInteger('app_client_id');
22 22
             $table->ipAddress('ip_address');
Please login to merge, or discard this patch.