Completed
Push — master ( 32345e...fde4fb )
by Bhanu
105:15 queued 50:04
created
database/migrations/2017_01_07_100100_create_products_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('products', function (Blueprint $table) {
15
+        Schema::create('products', 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_14_110226_create_product_groups_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_groups', function (Blueprint $table) {
15
+        Schema::create('product_groups', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
                         $table->string('name');
18 18
                         $table->string('headline');
Please login to merge, or discard this patch.
database/migrations/2016_01_08_125655_create_payments_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('payments', function (Blueprint $table) {
15
+        Schema::create('payments', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
                         $table->integer('parent_id')->unsigned();
18 18
                         $table->integer('invoice_id')->unsigned();
Please login to merge, or discard this patch.
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.