@@ -14,7 +14,7 @@ |
||
14 | 14 | */ |
15 | 15 | public function up() |
16 | 16 | { |
17 | - Schema::create('roles', function (Blueprint $table) { |
|
17 | + Schema::create('roles', function(Blueprint $table) { |
|
18 | 18 | $table->increments('role_id'); |
19 | 19 | $table->string('name'); |
20 | 20 | $table->string('description'); |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('tech_tip_systems', function (Blueprint $table) { |
|
16 | + Schema::create('tech_tip_systems', function(Blueprint $table) { |
|
17 | 17 | $table->increments('tip_tag_id'); |
18 | 18 | $table->integer('tip_id')->unsigned(); |
19 | 19 | $table->integer('sys_id')->unsigned(); |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('file_links', function (Blueprint $table) { |
|
16 | + Schema::create('file_links', function(Blueprint $table) { |
|
17 | 17 | $table->increments('link_id'); |
18 | 18 | $table->integer('user_id')->unsigned(); |
19 | 19 | $table->text('link_hash'); |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('user_initializes', function (Blueprint $table) { |
|
16 | + Schema::create('user_initializes', function(Blueprint $table) { |
|
17 | 17 | $table->increments('id'); |
18 | 18 | $table->string('username')->unique(); |
19 | 19 | $table->string('token')->unique(); |
@@ -14,7 +14,7 @@ |
||
14 | 14 | */ |
15 | 15 | public function up() |
16 | 16 | { |
17 | - Schema::create('users', function (Blueprint $table) { |
|
17 | + Schema::create('users', function(Blueprint $table) { |
|
18 | 18 | $table->increments('user_id'); |
19 | 19 | $table->string('username')->unique; |
20 | 20 | $table->string('first_name'); |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('user_role', function (Blueprint $table) { |
|
16 | + Schema::create('user_role', function(Blueprint $table) { |
|
17 | 17 | $table->increments('id'); |
18 | 18 | $table->integer('user_id')->unsigned(); |
19 | 19 | $table->integer('role_id')->unsigned(); |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('file_link_files', function (Blueprint $table) { |
|
16 | + Schema::create('file_link_files', function(Blueprint $table) { |
|
17 | 17 | $table->increments('link_file_id'); |
18 | 18 | $table->integer('link_id')->unsigned(); |
19 | 19 | $table->integer('file_id')->unsigned(); |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('customer_notes', function (Blueprint $table) { |
|
16 | + Schema::create('customer_notes', function(Blueprint $table) { |
|
17 | 17 | $table->increments('note_id'); |
18 | 18 | $table->integer('cust_id')->unsigned(); |
19 | 19 | $table->integer('user_id')->unsigned(); |
@@ -14,7 +14,7 @@ |
||
14 | 14 | */ |
15 | 15 | public function up() |
16 | 16 | { |
17 | - Schema::create('system_cust_data_types', function (Blueprint $table) { |
|
17 | + Schema::create('system_cust_data_types', function(Blueprint $table) { |
|
18 | 18 | $table->increments('data_type_id'); |
19 | 19 | $table->string('name'); |
20 | 20 | $table->timestamps(); |