@@ -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(); |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('customers', function (Blueprint $table) { |
|
16 | + Schema::create('customers', function(Blueprint $table) { |
|
17 | 17 | $table->increments('cust_id'); |
18 | 18 | $table->text('name'); |
19 | 19 | $table->text('dba_name')->nullable(); |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('password_resets', function (Blueprint $table) { |
|
16 | + Schema::create('password_resets', function(Blueprint $table) { |
|
17 | 17 | $table->string('email')->index(); |
18 | 18 | $table->string('token'); |
19 | 19 | $table->timestamp('created_at')->nullable(); |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('customer_files', function (Blueprint $table) { |
|
16 | + Schema::create('customer_files', function(Blueprint $table) { |
|
17 | 17 | $table->increments('cust_file_id'); |
18 | 18 | $table->integer('file_id')->unsigned(); |
19 | 19 | $table->integer('file_type_id')->unsigned(); |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('tech_tips', function (Blueprint $table) { |
|
16 | + Schema::create('tech_tips', function(Blueprint $table) { |
|
17 | 17 | $table->increments('tip_id'); |
18 | 18 | $table->integer('user_id')->unsigned(); |
19 | 19 | $table->boolean('public')->default(0); |