Completed
Push — master ( bcb82e...80085e )
by vijay
07:39
created
database/migrations/2016_02_16_140450_create_banlist_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('banlist', function (Blueprint $table) {
15
+        Schema::create('banlist', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->boolean('ban_status');
18 18
             $table->string('email_address');
Please login to merge, or discard this patch.
database/migrations/2016_03_31_061740_create_user_notification_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('user_notification', function (Blueprint $table) {
15
+        Schema::create('user_notification', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->integer('notification_id');
18 18
             $table->integer('user_id');
Please login to merge, or discard this patch.
database/migrations/2016_02_16_140450_create_ticket_status_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_status', function (Blueprint $table) {
15
+        Schema::create('ticket_status', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('name');
18 18
             $table->string('state');
Please login to merge, or discard this patch.
database/migrations/2016_05_19_055008_create_workflow_close_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_close', function (Blueprint $table) {
15
+        Schema::create('workflow_close', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->integer('days');
18 18
             $table->integer('condition');
Please login to merge, or discard this patch.
database/migrations/2016_08_08_095744_create_social_media_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('social_media', function (Blueprint $table) {
15
+        Schema::create('social_media', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('provider');
18 18
             $table->string('key');
Please login to merge, or discard this patch.
migrations/2016_02_16_140454_add_foreign_keys_to_settings_system_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('settings_system', function (Blueprint $table) {
15
+        Schema::table('settings_system', function(Blueprint $table) {
16 16
             $table->foreign('time_zone', 'settings_system_ibfk_1')->references('id')->on('timezone')->onUpdate('NO ACTION')->onDelete('RESTRICT');
17 17
             $table->foreign('time_farmat', 'settings_system_ibfk_2')->references('id')->on('time_format')->onUpdate('NO ACTION')->onDelete('RESTRICT');
18 18
             $table->foreign('date_format', 'settings_system_ibfk_3')->references('id')->on('date_format')->onUpdate('NO ACTION')->onDelete('RESTRICT');
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
      */
28 28
     public function down()
29 29
     {
30
-        Schema::table('settings_system', function (Blueprint $table) {
30
+        Schema::table('settings_system', function(Blueprint $table) {
31 31
             $table->dropForeign('settings_system_ibfk_1');
32 32
             $table->dropForeign('settings_system_ibfk_2');
33 33
             $table->dropForeign('settings_system_ibfk_3');
Please login to merge, or discard this patch.
database/migrations/2016_02_16_140450_create_tickets_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('tickets', function (Blueprint $table) {
15
+        Schema::create('tickets', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('ticket_number');
18 18
             $table->integer('user_id')->unsigned()->nullable()->index('user_id');
Please login to merge, or discard this patch.
database/migrations/2016_02_16_140450_create_password_resets_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('password_resets', function (Blueprint $table) {
15
+        Schema::create('password_resets', function(Blueprint $table) {
16 16
             $table->string('email')->index();
17 17
             $table->string('token')->index();
18 18
             $table->dateTime('created_at')->default('0000-00-00 00:00:00');
Please login to merge, or discard this patch.
database/migrations/2016_04_18_115908_create_workflow_action_table.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -12,14 +12,14 @@  discard block
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('workflow_action', function (Blueprint $table) {
15
+        Schema::create('workflow_action', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->integer('workflow_id')->unsigned();
18 18
             $table->string('condition');
19 19
             $table->string('action');
20 20
             $table->timestamps();
21 21
         });
22
-        Schema::table('workflow_action', function (Blueprint $table) {
22
+        Schema::table('workflow_action', function(Blueprint $table) {
23 23
             $table->foreign('workflow_id', 'workflow_action_1')->references('id')->on('workflow_name')->onUpdate('NO ACTION')->onDelete('RESTRICT');
24 24
         });
25 25
     }
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
         public function down()
33 33
         {
34 34
             Schema::drop('workflow_action');
35
-            Schema::table('workflow_action', function (Blueprint $table) {
35
+            Schema::table('workflow_action', function(Blueprint $table) {
36 36
                 $table->dropForeign('workflow_action_idfk_1');
37 37
             });
38 38
         }
Please login to merge, or discard this patch.