@@ -13,7 +13,7 @@ |
||
13 | 13 | public function up() |
14 | 14 | { |
15 | 15 | |
16 | - Schema::create('sd_attachment_types', function (Blueprint $table) { |
|
16 | + Schema::create('sd_attachment_types', function(Blueprint $table) { |
|
17 | 17 | $table->increments('id'); |
18 | 18 | $table->string('name'); |
19 | 19 | $table->timestamps(); |
@@ -12,7 +12,7 @@ |
||
12 | 12 | */ |
13 | 13 | public function up() |
14 | 14 | { |
15 | - Schema::create('sd_asset_type_form', function (Blueprint $table) { |
|
15 | + Schema::create('sd_asset_type_form', function(Blueprint $table) { |
|
16 | 16 | $table->increments('id'); |
17 | 17 | $table->integer('asset_type_id')->unsigned()->nullable(); |
18 | 18 | $table->integer('form_id')->unsigned()->nullable(); |
@@ -12,7 +12,7 @@ |
||
12 | 12 | */ |
13 | 13 | public function up() |
14 | 14 | { |
15 | - Schema::create('sd_releases', function (Blueprint $table) { |
|
15 | + Schema::create('sd_releases', function(Blueprint $table) { |
|
16 | 16 | $table->increments('id'); |
17 | 17 | $table->string('description'); |
18 | 18 | $table->string('subject'); |
@@ -12,7 +12,7 @@ |
||
12 | 12 | */ |
13 | 13 | public function up() |
14 | 14 | { |
15 | - Schema::create('sd_product_vendor_relation', function (Blueprint $table) { |
|
15 | + Schema::create('sd_product_vendor_relation', function(Blueprint $table) { |
|
16 | 16 | $table->increments('id'); |
17 | 17 | $table->integer('product_id')->nullable(); |
18 | 18 | $table->integer('vendor_id')->nullable(); |
@@ -12,7 +12,7 @@ |
||
12 | 12 | */ |
13 | 13 | public function up() |
14 | 14 | { |
15 | - Schema::create('sd_release_types', function (Blueprint $table) { |
|
15 | + Schema::create('sd_release_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('sd_assets', function (Blueprint $table) { |
|
15 | + Schema::create('sd_assets', function(Blueprint $table) { |
|
16 | 16 | $table->increments('id'); |
17 | 17 | $table->string('name'); |
18 | 18 | $table->string('external_id')->unique(); |
@@ -12,7 +12,7 @@ |
||
12 | 12 | */ |
13 | 13 | public function up() |
14 | 14 | { |
15 | - Schema::create('sd_license_types', function (Blueprint $table) { |
|
15 | + Schema::create('sd_license_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('sd_field_values', function (Blueprint $table) { |
|
15 | + Schema::create('sd_field_values', function(Blueprint $table) { |
|
16 | 16 | $table->increments('id'); |
17 | 17 | $table->integer('field_id')->unsigned()->nullable(); |
18 | 18 | $table->foreign('field_id')->references('id')->on('sd_form_fields'); |
@@ -12,7 +12,7 @@ |
||
12 | 12 | */ |
13 | 13 | public function up() |
14 | 14 | { |
15 | - Schema::create('sd_form_fields', function (Blueprint $table) { |
|
15 | + Schema::create('sd_form_fields', function(Blueprint $table) { |
|
16 | 16 | $table->increments('id'); |
17 | 17 | $table->string('name'); |
18 | 18 | $table->string('label'); |