Completed
Push — master ( e7dd5d...f635d3 )
by Renato
05:30
created
database/migrations/2016_11_21_160842_create_issue_types_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
      */
11 11
     public function up()
12 12
     {
13
-        Schema::create('issue_types', function (Blueprint $table) {
13
+        Schema::create('issue_types', function(Blueprint $table) {
14 14
             $table->increments('id');
15 15
             $table->integer('parent_id')->unsigned()->nullable();
16 16
             $table->string('slug', 60)->nullable();
Please login to merge, or discard this patch.
database/migrations/2016_11_21_160842_create_config_issue_efforts_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
      */
11 11
     public function up()
12 12
     {
13
-        Schema::create('config_issue_efforts', function (Blueprint $table) {
13
+        Schema::create('config_issue_efforts', function(Blueprint $table) {
14 14
             $table->increments('id');
15 15
             $table->string('title', 25)->nullable();
16 16
             $table->decimal('effort', 10)->nullable();
Please login to merge, or discard this patch.
migrations/2016_11_21_160842_create_pull_requests_has_commits_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
      */
11 11
     public function up()
12 12
     {
13
-        Schema::create('pull_requests_has_commits', function (Blueprint $table) {
13
+        Schema::create('pull_requests_has_commits', function(Blueprint $table) {
14 14
             $table->increments('id');
15 15
             $table->integer('pull_request_id')->unsigned()->nullable()->index('fk_pull_requests_has_commits_pull_request_id_idx');
16 16
             $table->integer('commit_id')->unsigned()->nullable()->index('fk_pull_requests_has_commits_commit_id_idx');
Please login to merge, or discard this patch.
migrations/2016_11_21_160844_add_foreign_keys_to_attachments_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
      */
11 11
     public function up()
12 12
     {
13
-        Schema::table('attachments', function (Blueprint $table) {
13
+        Schema::table('attachments', function(Blueprint $table) {
14 14
             $table->foreign('user_id', 'fk_attachments_user_id')->references('id')->on('users')->onUpdate('NO ACTION')->onDelete('NO ACTION');
15 15
         });
16 16
     }
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
      */
21 21
     public function down()
22 22
     {
23
-        Schema::table('attachments', function (Blueprint $table) {
23
+        Schema::table('attachments', function(Blueprint $table) {
24 24
             $table->dropForeign('fk_attachments_user_id');
25 25
         });
26 26
     }
Please login to merge, or discard this patch.
database/migrations/2016_11_21_160842_create_commit_file_phpcs_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
      */
11 11
     public function up()
12 12
     {
13
-        Schema::create('commit_file_phpcs', function (Blueprint $table) {
13
+        Schema::create('commit_file_phpcs', function(Blueprint $table) {
14 14
             $table->increments('id');
15 15
             $table->integer('commit_file_id')->unsigned()->nullable()->index('fk_commit_file_phpcs_commit_file_id_idx');
16 16
             $table->integer('line')->unsigned()->nullable();
Please login to merge, or discard this patch.
database/migrations/2016_11_21_160842_create_organizations_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
      */
11 11
     public function up()
12 12
     {
13
-        Schema::create('organizations', function (Blueprint $table) {
13
+        Schema::create('organizations', function(Blueprint $table) {
14 14
             $table->increments('id');
15 15
             $table->bigInteger('github_id')->unsigned()->nullable()->unique('github_id_UNIQUE');
16 16
             $table->string('username')->nullable()->index('login');
Please login to merge, or discard this patch.
database/migrations/2016_11_21_160842_create_branches_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
      */
11 11
     public function up()
12 12
     {
13
-        Schema::create('branches', function (Blueprint $table) {
13
+        Schema::create('branches', function(Blueprint $table) {
14 14
             $table->increments('id');
15 15
             $table->integer('user_id')->unsigned()->nullable()->index('fk_branches_user_id_idx');
16 16
             $table->integer('product_backlog_id')->unsigned()->nullable();
Please login to merge, or discard this patch.
database/migrations/2016_11_21_160844_add_foreign_keys_to_notes_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
      */
11 11
     public function up()
12 12
     {
13
-        Schema::table('notes', function (Blueprint $table) {
13
+        Schema::table('notes', function(Blueprint $table) {
14 14
             $table->foreign('user_id', 'fk_notes_user_id')->references('id')->on('users')->onUpdate('NO ACTION')->onDelete('NO ACTION');
15 15
         });
16 16
     }
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
      */
21 21
     public function down()
22 22
     {
23
-        Schema::table('notes', function (Blueprint $table) {
23
+        Schema::table('notes', function(Blueprint $table) {
24 24
             $table->dropForeign('fk_notes_user_id');
25 25
         });
26 26
     }
Please login to merge, or discard this patch.
database/migrations/2016_11_21_160842_create_notes_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
      */
11 11
     public function up()
12 12
     {
13
-        Schema::create('notes', function (Blueprint $table) {
13
+        Schema::create('notes', function(Blueprint $table) {
14 14
             $table->increments('id');
15 15
             $table->integer('user_id')->unsigned()->nullable()->index('fk_notes_user_id_idx');
16 16
             $table->string('noteable_type', 45)->nullable();
Please login to merge, or discard this patch.