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] 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, }); },