Completed
Pull Request — master (#141)
by Bhanu
37:51 queued 34s
created
database/migrations/2017_06_10_062630_create_templates_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('templates', function (Blueprint $table) {
15
+        Schema::create('templates', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('name');
18 18
             $table->integer('type')->unsigned()->index('templates_type_foreign');
Please login to merge, or discard this patch.
database/migrations/2017_06_10_062630_create_promotion_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('promotion_types', function (Blueprint $table) {
15
+        Schema::create('promotion_types', 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_group_features_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('group_features', function (Blueprint $table) {
15
+        Schema::create('group_features', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->integer('group_id')->unsigned()->index('group_features_group_id_foreign');
18 18
             $table->string('features');
Please login to merge, or discard this patch.
database/migrations/2017_06_10_062630_create_states_subdivisions_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('states_subdivisions', function (Blueprint $table) {
15
+        Schema::create('states_subdivisions', function(Blueprint $table) {
16 16
             $table->smallInteger('state_subdivision_id')->unsigned()->primary();
17 17
             $table->string('country_code_char2', 2);
18 18
             $table->string('country_code_char3', 3);
Please login to merge, or discard this patch.
database/migrations/2017_06_10_062630_create_mailchimp_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('mailchimp_settings', function (Blueprint $table) {
15
+        Schema::create('mailchimp_settings', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('api_key');
18 18
             $table->string('list_id');
Please login to merge, or discard this patch.
database/migrations/2017_06_10_062630_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()->index('invoice_items_invoice_id_foreign');
18 18
             $table->string('product_name');
Please login to merge, or discard this patch.
database/migrations/2017_06_10_062630_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()->index('configurable_options_group_id_foreign');
18 18
             $table->integer('type');
Please login to merge, or discard this patch.
database/migrations/2017_06_10_062630_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')->unique('code');
18 18
             $table->integer('type')->unsigned()->index('promotions_type_foreign');
Please login to merge, or discard this patch.
migrations/2017_06_10_062630_create_tax_product_relations_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_product_relations', function (Blueprint $table) {
15
+        Schema::create('tax_product_relations', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->integer('product_id')->unsigned()->index('tax_product_relations_product_id_foreign');
18 18
             $table->integer('tax_class_id')->unsigned()->index('tax_product_relations_tax_id_foreign');
Please login to merge, or discard this patch.