From 7f9cd51f37fea48f0a9089e526719229c5058f10 Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Wed, 20 May 2020 08:30:05 -0700 Subject: [PATCH 1/2] Update bug template to account for self hosted --- .github/ISSUE_TEMPLATE/bug_report.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index b61db4d7c..446633037 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -22,13 +22,16 @@ A clear and concise description of what you expected to happen. **Screenshots** If applicable, add screenshots or videos to help explain your problem. +**Outline (please complete the following information):** +- Install: [getoutline.com or self hosted] +- Version: [commit sha if self hosted] + **Desktop (please complete the following information):** - OS: [e.g. iOS] - Browser [e.g. chrome, safari] - Version [e.g. 22] -**Smartphone (please complete the following information):** +**Mobile (please complete the following information):** - Device: [e.g. iPhone6] - OS: [e.g. iOS8.1] - Browser [e.g. stock browser, safari] - - Version [e.g. 22] From aed76c7bcb847a897312c2a222c306bc8e153150 Mon Sep 17 00:00:00 2001 From: Ante Primorac Date: Wed, 20 May 2020 19:50:52 +0200 Subject: [PATCH 2/2] fix revisions backup data type (#1274) --- server/migrations/20200519032353-text-backup.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/migrations/20200519032353-text-backup.js b/server/migrations/20200519032353-text-backup.js index 3f6fffae2..e7d9ceb41 100644 --- a/server/migrations/20200519032353-text-backup.js +++ b/server/migrations/20200519032353-text-backup.js @@ -7,7 +7,7 @@ module.exports = { allowNull: true, }); await queryInterface.addColumn('revisions', 'backup', { - type: Sequelize.SMALLINT, + type: Sequelize.TEXT, allowNull: true, }); },