Completed
Push — master ( bcb82e...80085e )
by vijay
07:39
created
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.
database/migrations/2016_06_02_081020_create_rating_ref_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('rating_ref', function (Blueprint $table) {
15
+        Schema::create('rating_ref', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->integer('rating_id');
18 18
             $table->integer('ticket_id');
Please login to merge, or discard this patch.
database/migrations/2016_06_02_090628_create_templates_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('templates', function (Blueprint $table) {
15
+        Schema::create('templates', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('name');
18 18
             $table->string('variable');
Please login to merge, or discard this patch.
database/migrations/2016_03_31_061534_create_notification_types_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('notification_types', function (Blueprint $table) {
15
+        Schema::create('notification_types', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('message');
18 18
             $table->string('type');
Please login to merge, or discard this patch.
database/migrations/2016_02_16_140450_create_teams_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('teams', function (Blueprint $table) {
15
+        Schema::create('teams', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('name');
18 18
             $table->boolean('status');
Please login to merge, or discard this patch.
database/migrations/2016_05_10_102423_create_country_code_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('country_code', function (Blueprint $table) {
15
+        Schema::create('country_code', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->char('iso', 2);
18 18
             $table->string('name', 100);
Please login to merge, or discard this patch.