@@ -12,7 +12,7 @@ |
||
| 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'); |
@@ -12,7 +12,7 @@ |
||
| 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(); |
@@ -12,7 +12,7 @@ |
||
| 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'); |
@@ -12,7 +12,7 @@ |
||
| 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); |
@@ -12,7 +12,7 @@ |
||
| 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'); |
@@ -12,7 +12,7 @@ |
||
| 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'); |
@@ -12,7 +12,7 @@ |
||
| 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'); |
@@ -12,7 +12,7 @@ |
||
| 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'); |
@@ -12,7 +12,7 @@ |
||
| 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'); |