@@ -12,7 +12,7 @@ |
||
12 | 12 | */ |
13 | 13 | public function up() |
14 | 14 | { |
15 | - Schema::create('sd_release_priorities', function (Blueprint $table) { |
|
15 | + Schema::create('sd_release_priorities', function(Blueprint $table) { |
|
16 | 16 | $table->increments('id'); |
17 | 17 | $table->string('name'); |
18 | 18 | $table->timestamps(); |
@@ -11,7 +11,7 @@ |
||
11 | 11 | * @return void |
12 | 12 | */ |
13 | 13 | public function up() { |
14 | - Schema::create('sd_problem', function (Blueprint $table) { |
|
14 | + Schema::create('sd_problem', function(Blueprint $table) { |
|
15 | 15 | $table->increments('id'); |
16 | 16 | $table->string('from'); |
17 | 17 | $table->string('subject'); |
@@ -12,7 +12,7 @@ |
||
12 | 12 | */ |
13 | 13 | public function up() |
14 | 14 | { |
15 | - Schema::create('sd_products', function (Blueprint $table) { |
|
15 | + Schema::create('sd_products', function(Blueprint $table) { |
|
16 | 16 | $table->increments('id'); |
17 | 17 | $table->string('name'); |
18 | 18 | $table->string('description'); |
@@ -12,7 +12,7 @@ |
||
12 | 12 | */ |
13 | 13 | public function up() |
14 | 14 | { |
15 | - Schema::create('sd_change_types', function (Blueprint $table) { |
|
15 | + Schema::create('sd_change_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_location_categories', function (Blueprint $table) { |
|
15 | + Schema::create('sd_location_categories', function(Blueprint $table) { |
|
16 | 16 | $table->increments('id'); |
17 | 17 | $table->integer('parent_id')->nullable(); |
18 | 18 | $table->string('name'); |
@@ -12,7 +12,7 @@ |
||
12 | 12 | */ |
13 | 13 | public function up() |
14 | 14 | { |
15 | - Schema::create('sd_asset_form', function (Blueprint $table) { |
|
15 | + Schema::create('sd_asset_form', function(Blueprint $table) { |
|
16 | 16 | $table->increments('id'); |
17 | 17 | $table->string('asset_id'); |
18 | 18 | $table->string('key'); |
@@ -12,7 +12,7 @@ |
||
12 | 12 | */ |
13 | 13 | public function up() |
14 | 14 | { |
15 | - Schema::create('sd_vendors', function (Blueprint $table) { |
|
15 | + Schema::create('sd_vendors', function(Blueprint $table) { |
|
16 | 16 | $table->increments('id'); |
17 | 17 | $table->string('name'); |
18 | 18 | $table->string('primary_contact'); |
@@ -12,7 +12,7 @@ |
||
12 | 12 | */ |
13 | 13 | public function up() |
14 | 14 | { |
15 | - Schema::create('sd_contract_asset_relations', function (Blueprint $table) { |
|
15 | + Schema::create('sd_contract_asset_relations', function(Blueprint $table) { |
|
16 | 16 | $table->increments('id'); |
17 | 17 | $table->integer('contract_id')->unsigned()->nullable(); |
18 | 18 | $table->foreign('contract_id')->references('id')->on('sd_contracts'); |
@@ -12,7 +12,7 @@ |
||
12 | 12 | */ |
13 | 13 | public function up() |
14 | 14 | { |
15 | - Schema::create('sd_change_release', function (Blueprint $table) { |
|
15 | + Schema::create('sd_change_release', function(Blueprint $table) { |
|
16 | 16 | $table->increments('id'); |
17 | 17 | $table->integer('change_id')->unsigned()->nullable(); |
18 | 18 | $table->foreign('change_id')->references('id')->on('sd_changes'); |