@@ -12,7 +12,7 @@ |
||
12 | 12 | */ |
13 | 13 | public function up() |
14 | 14 | { |
15 | - Schema::create('date_time_format', function (Blueprint $table) { |
|
15 | + Schema::create('date_time_format', function(Blueprint $table) { |
|
16 | 16 | $table->increments('id'); |
17 | 17 | $table->string('format'); |
18 | 18 | }); |
@@ -12,7 +12,7 @@ |
||
12 | 12 | */ |
13 | 13 | public function up() |
14 | 14 | { |
15 | - Schema::create('settings_ticket', function (Blueprint $table) { |
|
15 | + Schema::create('settings_ticket', function(Blueprint $table) { |
|
16 | 16 | $table->increments('id'); |
17 | 17 | $table->string('num_format'); |
18 | 18 | $table->string('num_sequence'); |
@@ -12,7 +12,7 @@ |
||
12 | 12 | */ |
13 | 13 | public function up() |
14 | 14 | { |
15 | - Schema::create('ticket_collaborator', function (Blueprint $table) { |
|
15 | + Schema::create('ticket_collaborator', function(Blueprint $table) { |
|
16 | 16 | $table->increments('id'); |
17 | 17 | $table->boolean('isactive'); |
18 | 18 | $table->integer('ticket_id')->unsigned()->nullable()->index('ticket_id'); |
@@ -12,7 +12,7 @@ |
||
12 | 12 | */ |
13 | 13 | public function up() |
14 | 14 | { |
15 | - Schema::create('settings_system', function (Blueprint $table) { |
|
15 | + Schema::create('settings_system', function(Blueprint $table) { |
|
16 | 16 | $table->increments('id'); |
17 | 17 | $table->boolean('status'); |
18 | 18 | $table->string('url'); |
@@ -12,7 +12,7 @@ |
||
12 | 12 | */ |
13 | 13 | public function up() |
14 | 14 | { |
15 | - Schema::create('faveo_queues', function (Blueprint $table) { |
|
15 | + Schema::create('faveo_queues', function(Blueprint $table) { |
|
16 | 16 | $table->increments('id'); |
17 | 17 | $table->integer('service_id'); |
18 | 18 | $table->string('key'); |
@@ -12,7 +12,7 @@ |
||
12 | 12 | */ |
13 | 13 | public function up() |
14 | 14 | { |
15 | - Schema::create('conditions', function (Blueprint $table) { |
|
15 | + Schema::create('conditions', function(Blueprint $table) { |
|
16 | 16 | $table->increments('id'); |
17 | 17 | $table->string('job'); |
18 | 18 | $table->string('value'); |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('mail_services', function (Blueprint $table) { |
|
16 | + Schema::create('mail_services', function(Blueprint $table) { |
|
17 | 17 | $table->increments('id'); |
18 | 18 | $table->string('name'); |
19 | 19 | $table->string('short_name'); |
@@ -12,7 +12,7 @@ |
||
12 | 12 | */ |
13 | 13 | public function up() |
14 | 14 | { |
15 | - Schema::create('faveo_mails', function (Blueprint $table) { |
|
15 | + Schema::create('faveo_mails', function(Blueprint $table) { |
|
16 | 16 | $table->increments('id'); |
17 | 17 | $table->integer('email_id'); |
18 | 18 | $table->string('drive'); |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('queue_services', function (Blueprint $table) { |
|
16 | + Schema::create('queue_services', function(Blueprint $table) { |
|
17 | 17 | $table->increments('id'); |
18 | 18 | $table->string('name'); |
19 | 19 | $table->string('short_name'); |