Completed
Push — master ( bcb82e...80085e )
by vijay
07:39
created
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.
database/migrations/2016_06_02_095357_create_ticket_token_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_token', function (Blueprint $table) {
15
+        Schema::create('ticket_token', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->integer('ticket_id');
18 18
             $table->string('token');
Please login to merge, or discard this patch.
database/migrations/2016_02_16_140450_create_languages_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('languages', function (Blueprint $table) {
15
+        Schema::create('languages', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('name');
18 18
             $table->string('locale');
Please login to merge, or discard this patch.
database/migrations/2016_02_16_140450_create_plugins_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('plugins', function (Blueprint $table) {
15
+        Schema::create('plugins', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('name');
18 18
             $table->string('path');
Please login to merge, or discard this patch.
database/migrations/2016_02_16_140450_create_sla_plan_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('sla_plan', function (Blueprint $table) {
15
+        Schema::create('sla_plan', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('name');
18 18
             $table->string('grace_period');
Please login to merge, or discard this patch.
database/migrations/2016_02_16_140450_create_settings_ratings_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('settings_ratings', function (Blueprint $table) {
15
+        Schema::create('settings_ratings', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('rating_name');
18 18
             $table->integer('publish');
Please login to merge, or discard this patch.