Completed
Pull Request — master (#141)
by Bhanu
37:51 queued 34s
created
database/migrations/2017_06_10_062630_create_periods_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('periods', function (Blueprint $table) {
15
+        Schema::create('periods', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('name');
18 18
             $table->string('days');
Please login to merge, or discard this patch.
database/migrations/2017_06_10_062632_add_foreign_keys_to_prices_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::table('prices', function (Blueprint $table) {
15
+        Schema::table('prices', function(Blueprint $table) {
16 16
             $table->foreign('product_id')->references('id')->on('products')->onUpdate('RESTRICT')->onDelete('RESTRICT');
17 17
         });
18 18
     }
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
      */
25 25
     public function down()
26 26
     {
27
-        Schema::table('prices', function (Blueprint $table) {
27
+        Schema::table('prices', function(Blueprint $table) {
28 28
             $table->dropForeign('prices_product_id_foreign');
29 29
         });
30 30
     }
Please login to merge, or discard this patch.
database/migrations/2017_06_10_062630_create_githubs_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('githubs', function (Blueprint $table) {
15
+        Schema::create('githubs', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('client_id');
18 18
             $table->string('client_secret');
Please login to merge, or discard this patch.
database/migrations/2017_06_10_062630_create_prices_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('prices', function (Blueprint $table) {
15
+        Schema::create('prices', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->integer('product_id')->unsigned()->index('prices_product_id_foreign');
18 18
             $table->string('currency');
Please login to merge, or discard this patch.
migrations/2017_06_10_062632_add_foreign_keys_to_invoices_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::table('invoices', function (Blueprint $table) {
15
+        Schema::table('invoices', function(Blueprint $table) {
16 16
             $table->foreign('user_id')->references('id')->on('users')->onUpdate('RESTRICT')->onDelete('RESTRICT');
17 17
         });
18 18
     }
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
      */
25 25
     public function down()
26 26
     {
27
-        Schema::table('invoices', function (Blueprint $table) {
27
+        Schema::table('invoices', function(Blueprint $table) {
28 28
             $table->dropForeign('invoices_user_id_foreign');
29 29
         });
30 30
     }
Please login to merge, or discard this patch.
database/migrations/2017_06_10_062630_create_timezone_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('timezone', function (Blueprint $table) {
15
+        Schema::create('timezone', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('name');
18 18
             $table->string('location');
Please login to merge, or discard this patch.
database/migrations/2017_06_10_062630_create_tax_classes_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('tax_classes', function (Blueprint $table) {
15
+        Schema::create('tax_classes', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('name');
18 18
             $table->timestamps();
Please login to merge, or discard this patch.
database/migrations/2017_06_10_062630_create_plugins_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('plugins', function (Blueprint $table) {
15
+        Schema::create('plugins', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('name');
18 18
             $table->string('path');
Please login to merge, or discard this patch.
database/migrations/2017_06_10_062630_create_mobile_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('mobile', function (Blueprint $table) {
15
+        Schema::create('mobile', function(Blueprint $table) {
16 16
             $table->integer('id', true);
17 17
             $table->char('iso', 2);
18 18
             $table->string('name', 80);
Please login to merge, or discard this patch.