-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into add-rf4-badgeholders
- Loading branch information
Showing
15 changed files
with
314 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,3 +11,6 @@ | |
|
||
# Backup file | ||
.env.backup | ||
|
||
# Exclude add-organisation updates on pushes | ||
add-organisation.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
module.exports = class Data1717941249030 { | ||
name = 'Data1717941249030' | ||
|
||
async up(db) { | ||
await db.query(`ALTER TABLE "project" ADD "description_html" text`) | ||
} | ||
|
||
async down(db) { | ||
await db.query(`ALTER TABLE "project" DROP COLUMN "description_html"`) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
module.exports = class Data1718005314786 { | ||
name = 'Data1718005314786' | ||
|
||
async up(db) { | ||
await db.query(`ALTER TABLE "project" ADD "description_summary" text`) | ||
} | ||
|
||
async down(db) { | ||
await db.query(`ALTER TABLE "project" DROP COLUMN "description_summary"`) | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.