1. 02 Dec, 2018 3 commits
  2. 30 Nov, 2018 1 commit
  3. 26 Nov, 2018 1 commit
  4. 24 Nov, 2018 1 commit
  5. 23 Nov, 2018 1 commit
  6. 21 Nov, 2018 1 commit
  7. 18 Nov, 2018 1 commit
    • Florian Eitel's avatar
      Migration fixes 5318 1.6 backport (#5355) · ffc0c7f6
      Florian Eitel authored
      * Remove field from migration to support upgrades from older version
      
      That will ensure the field does not get queried in the Select if it does
      not exist yet:
      
      ```
      [I] [SQL] SELECT "id", "repo_id", "index", "poster_id", "name", "content", "milestone_id", "priority", "assignee_id", "is_closed", "is_pull", "num_comments", "ref", "deadline_unix", "created_unix", "updated_unix
      [...itea/routers/init.go:60 GlobalInit()] [E] Failed to initialize ORM engine: migrate: do migrate: pq: column "ref" does not exist
      ```
      
      see #5318
      
      * Skip remove stale watcher migration if not required
      
      Otherwise the migration will fail if executed from a older database
      version without multiple IssueWatch feature.
      
      ```
      2018/11/11 23:51:14 [I] [SQL] SELECT DISTINCT "issue_watch"."user_id", "issue"."repo_id" FROM "issue_watch" INNER JOIN issue ON issue_watch.issue_id = issue.id WHERE (issue_watch.is_watching = $1) LIMIT 50 []int
      [...itea/routers/init.go:60 GlobalInit()] [E] Failed to initialize ORM engine: migrate: do migrate: pq: relation "issue_watch" does not exist
      ```
      
      see #5318
      ffc0c7f6
  8. 11 Nov, 2018 1 commit
  9. 10 Nov, 2018 1 commit
  10. 09 Nov, 2018 2 commits
  11. 08 Nov, 2018 2 commits
  12. 07 Nov, 2018 2 commits
  13. 04 Nov, 2018 2 commits
  14. 03 Nov, 2018 1 commit
  15. 01 Nov, 2018 2 commits
  16. 31 Oct, 2018 1 commit
  17. 30 Oct, 2018 4 commits
  18. 29 Oct, 2018 2 commits
  19. 25 Oct, 2018 1 commit
  20. 23 Oct, 2018 1 commit
  21. 22 Oct, 2018 1 commit
    • Filip Navara's avatar
      Fix SQL quoting (#5137) · 7238bb32
      Filip Navara authored
      
      `show` is keyword in MySQL and has to be quoted to reference a column name. Use grave accents (ASCII code 96) for quoting to match rest of the source code. It's non-standard SQL, but it's supported by SQLite and MySQL.
      Signed-off-by: default avatarFilip Navara <navara@emclient.com>
      7238bb32
  22. 18 Oct, 2018 1 commit
  23. 17 Oct, 2018 5 commits
  24. 16 Oct, 2018 1 commit
  25. 15 Oct, 2018 1 commit