diff options
author | Felipe Artur <felipefac@gmail.com> | 2019-05-02 16:48:02 -0300 |
---|---|---|
committer | Felipe Artur <felipefac@gmail.com> | 2019-05-06 15:01:53 -0300 |
commit | 7e255f6793b8ff86777ccba087c9a76872a3819c (patch) | |
tree | 6573083d4b42e6167ca1f1222dab430ed7d19664 /db/schema.rb | |
parent | f98758753a73841d2374aad986ae795da828ddca (diff) | |
download | gitlab-ce-issue_57906_fix_github_import.tar.gz |
Fix issuables state_id nil when importing projects from GitHubissue_57906_fix_github_import
Issues and merge requests imported from GitHub are having state_id
set to null. This fixes the GitHub project importer and schedule
migrations to fix state_id.
Diffstat (limited to 'db/schema.rb')
-rw-r--r-- | db/schema.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb index 2e77bbb51e5..3788be73ae2 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,7 +10,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 20190426180107) do +ActiveRecord::Schema.define(version: 20190506135400) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" |