Passed
Push — main ( c8dd5d...cee2a9 )
by Richard
05:56
created
migrations/2016_05_12_063950_create_redeem_codes_rewards_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('redeem_code_rewards', function (Blueprint $table) {
15
+        Schema::create('redeem_code_rewards', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
 
18 18
             $table->integer('redeem_code_id')->unsigned()->nullable();
Please login to merge, or discard this patch.
migrations/2016_05_12_063931_create_redeem_codes_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('redeem_codes', function (Blueprint $table) {
15
+        Schema::create('redeem_codes', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
 
18 18
             $table->integer('event_id')->unsigned()->default(0);
Please login to merge, or discard this patch.