Completed
Push — master ( bcb82e...80085e )
by vijay
07:39
created
database/migrations/2016_07_02_051247_create_jobs_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('jobs', function (Blueprint $table) {
15
+        Schema::create('jobs', function(Blueprint $table) {
16 16
             $table->bigIncrements('id');
17 17
             $table->string('queue');
18 18
             $table->longText('payload');
Please login to merge, or discard this patch.
database/migrations/2016_06_02_072210_create_common_settings_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('common_settings', function (Blueprint $table) {
15
+        Schema::create('common_settings', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('option_name');
18 18
             $table->string('option_value');
Please login to merge, or discard this patch.
database/migrations/2016_02_16_140450_create_emails_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('emails', function (Blueprint $table) {
15
+        Schema::create('emails', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('email_address');
18 18
             $table->string('email_name');
Please login to merge, or discard this patch.
database/migrations/2016_02_16_140450_create_ticket_form_data_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('ticket_form_data', function (Blueprint $table) {
15
+        Schema::create('ticket_form_data', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->integer('ticket_id')->unsigned()->nullable()->index('ticket_id');
18 18
             $table->text('title', 65535);
Please login to merge, or discard this patch.
database/migrations/2016_04_18_115852_create_workflow_name_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('workflow_name', function (Blueprint $table) {
15
+        Schema::create('workflow_name', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('name');
18 18
             $table->integer('status');
Please login to merge, or discard this patch.
database/migrations/2016_02_16_140450_create_version_check_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('version_check', function (Blueprint $table) {
15
+        Schema::create('version_check', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('current_version');
18 18
             $table->string('new_version');
Please login to merge, or discard this patch.
2016_02_16_140454_add_foreign_keys_to_user_assign_organization_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::table('user_assign_organization', function (Blueprint $table) {
15
+        Schema::table('user_assign_organization', function(Blueprint $table) {
16 16
             $table->foreign('org_id', 'user_assign_organization_ibfk_1')->references('id')->on('organization')->onUpdate('NO ACTION')->onDelete('RESTRICT');
17 17
             $table->foreign('user_id', 'user_assign_organization_ibfk_2')->references('id')->on('users')->onUpdate('NO ACTION')->onDelete('RESTRICT');
18 18
         });
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
      */
26 26
     public function down()
27 27
     {
28
-        Schema::table('user_assign_organization', function (Blueprint $table) {
28
+        Schema::table('user_assign_organization', function(Blueprint $table) {
29 29
             $table->dropForeign('user_assign_organization_ibfk_1');
30 30
             $table->dropForeign('user_assign_organization_ibfk_2');
31 31
         });
Please login to merge, or discard this patch.
migrations/2016_02_16_140454_add_foreign_keys_to_help_topic_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::table('help_topic', function (Blueprint $table) {
15
+        Schema::table('help_topic', function(Blueprint $table) {
16 16
             $table->foreign('custom_form', 'help_topic_ibfk_1')->references('id')->on('custom_forms')->onUpdate('NO ACTION')->onDelete('RESTRICT');
17 17
             $table->foreign('department', 'help_topic_ibfk_2')->references('id')->on('department')->onUpdate('NO ACTION')->onDelete('RESTRICT');
18 18
             $table->foreign('ticket_status', 'help_topic_ibfk_3')->references('id')->on('ticket_status')->onUpdate('NO ACTION')->onDelete('RESTRICT');
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
      */
30 30
     public function down()
31 31
     {
32
-        Schema::table('help_topic', function (Blueprint $table) {
32
+        Schema::table('help_topic', function(Blueprint $table) {
33 33
             $table->dropForeign('help_topic_ibfk_1');
34 34
             $table->dropForeign('help_topic_ibfk_2');
35 35
             $table->dropForeign('help_topic_ibfk_3');
Please login to merge, or discard this patch.
database/migrations/2016_02_16_140450_create_users_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('users', function (Blueprint $table) {
15
+        Schema::create('users', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('user_name');
18 18
             $table->string('first_name');
Please login to merge, or discard this patch.