fix(backend): allow non_contiguous type in time_entries
All checks were successful
Docker Build and Publish / build-and-push (push) Successful in 42s
All checks were successful
Docker Build and Publish / build-and-push (push) Successful in 42s
This commit is contained in:
@@ -0,0 +1,17 @@
|
|||||||
|
migrate((db) => {
|
||||||
|
const dao = new Dao(db)
|
||||||
|
const collection = dao.findCollectionByNameOrId("time_entries")
|
||||||
|
|
||||||
|
const typeField = collection.schema.getFieldByName("type")
|
||||||
|
typeField.options.values = ["regular", "overtime", "standby", "callback", "non_contiguous"]
|
||||||
|
|
||||||
|
return dao.saveCollection(collection)
|
||||||
|
}, (db) => {
|
||||||
|
const dao = new Dao(db)
|
||||||
|
const collection = dao.findCollectionByNameOrId("time_entries")
|
||||||
|
|
||||||
|
const typeField = collection.schema.getFieldByName("type")
|
||||||
|
typeField.options.values = ["regular", "overtime", "standby", "callback"]
|
||||||
|
|
||||||
|
return dao.saveCollection(collection)
|
||||||
|
})
|
||||||
Reference in New Issue
Block a user