Completed
Branch master (bb48cc)
by vijay
148:50 queued 92:39
created
database/migrations/2016_01_14_112853_create_configurable_options_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('configurable_options', function (Blueprint $table) {
15
+        Schema::create('configurable_options', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
                         $table->integer('group_id')->unsigned();
18 18
                         $table->foreign('group_id')->references('id')->on('product_groups');
Please login to merge, or discard this patch.
database/migrations/2017_01_08_123422_create_orders_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('orders', function (Blueprint $table) {
15
+        Schema::create('orders', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
                         $table->integer('invoice_id')->unsigned();
18 18
                         $table->integer('client')->unsigned();
Please login to merge, or discard this patch.
database/migrations/2017_01_08_100842_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();
18 18
                         $table->foreign('product_id')->references('id')->on('products');
Please login to merge, or discard this patch.
database/migrations/2013_01_07_051109_create_settings_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('settings', function (Blueprint $table) {
15
+        Schema::create('settings', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
                         $table->string('company')->default('Ladybird Web Solution');
18 18
                         $table->string('website')->default('http://www.ladybirdweb.com');
Please login to merge, or discard this patch.
database/migrations/2016_01_08_124625_create_invoice_items_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('invoice_items', function (Blueprint $table) {
15
+        Schema::create('invoice_items', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
                         $table->integer('invoice_id')->unsigned();
18 18
                         $table->foreign('invoice_id')->references('id')->on('invoices');
Please login to merge, or discard this patch.
database/migrations/1999_01_11_060538_create_types_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('product_types', function (Blueprint $table) {
15
+        Schema::create('product_types', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
                         $table->string('name');
18 18
                         $table->string('description');
Please login to merge, or discard this patch.
database/migrations/2016_01_11_092954_create_currencies_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('currencies', function (Blueprint $table) {
15
+        Schema::create('currencies', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
                         $table->string('code')->unique();
18 18
                         $table->string('symbol');
Please login to merge, or discard this patch.
database/migrations/2016_01_11_050358_create_subscriptions_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('subscriptions', function (Blueprint $table) {
15
+        Schema::create('subscriptions', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->integer('user_id')->unsigned();
18 18
             $table->foreign('user_id')->references('id')->on('users');
Please login to merge, or discard this patch.
database/migrations/2016_01_12_054746_create_promotions_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('promotions', function (Blueprint $table) {
15
+        Schema::create('promotions', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
                         $table->string('code');
18 18
                         $table->integer('type')->unsigned();
Please login to merge, or discard this patch.