Skip to content

Commit

Permalink
Safer migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
Austin2Shih committed Sep 21, 2024
1 parent 4b761cd commit f0f2816
Show file tree
Hide file tree
Showing 3 changed files with 124 additions and 4 deletions.
121 changes: 118 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"migrate:down": "migrate-mongo down"
},
"dependencies": {
"@include/hearth": "[email protected]:include-davis/Include-CMS.git#v1.0.5",
"@include/hearth": "[email protected]:include-davis/Include-CMS.git#v1.0.6",
"eslint": "^8",
"eslint-plugin-prettier": "^5.0.1"
}
Expand Down
5 changes: 5 additions & 0 deletions schema/cabinet-positions.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ cabinetPositions
displayName: 'Description',
type: FieldType.LONG_TEXT,
required: true,
})
.createField({
name: 'display_order',
displayName: 'Display Order (1-12)',
type: FieldType.SHORT_TEXT,
});

module.exports = cabinetPositions;

0 comments on commit f0f2816

Please sign in to comment.