mirror of
https://github.com/grassrootseconomics/farmstar-survey-backend.git
synced 2024-11-05 18:36:47 +01:00
98 lines
1.8 KiB
Go
98 lines
1.8 KiB
Go
package migrations
|
|
|
|
import (
|
|
"encoding/json"
|
|
|
|
"github.com/pocketbase/dbx"
|
|
"github.com/pocketbase/pocketbase/daos"
|
|
m "github.com/pocketbase/pocketbase/migrations"
|
|
"github.com/pocketbase/pocketbase/models/schema"
|
|
)
|
|
|
|
func init() {
|
|
m.Register(func(db dbx.Builder) error {
|
|
dao := daos.New(db);
|
|
|
|
collection, err := dao.FindCollectionByNameOrId("5pbnsptw25ip6b1")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// update
|
|
edit_crop := &schema.SchemaField{}
|
|
json.Unmarshal([]byte(`{
|
|
"system": false,
|
|
"id": "gt06xc9v",
|
|
"name": "crop",
|
|
"type": "select",
|
|
"required": true,
|
|
"presentable": false,
|
|
"unique": false,
|
|
"options": {
|
|
"maxSelect": 1,
|
|
"values": [
|
|
"rice",
|
|
"coffee",
|
|
"tea",
|
|
"sugarcane",
|
|
"miraa",
|
|
"avocados",
|
|
"maize",
|
|
"potatoes",
|
|
"sorghum",
|
|
"other_fruits",
|
|
"other_vegetables",
|
|
"other_grains",
|
|
"dragonfruit",
|
|
"hay",
|
|
"beans",
|
|
"soya"
|
|
]
|
|
}
|
|
}`), edit_crop)
|
|
collection.Schema.AddField(edit_crop)
|
|
|
|
return dao.SaveCollection(collection)
|
|
}, func(db dbx.Builder) error {
|
|
dao := daos.New(db);
|
|
|
|
collection, err := dao.FindCollectionByNameOrId("5pbnsptw25ip6b1")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// update
|
|
edit_crop := &schema.SchemaField{}
|
|
json.Unmarshal([]byte(`{
|
|
"system": false,
|
|
"id": "gt06xc9v",
|
|
"name": "crop",
|
|
"type": "select",
|
|
"required": true,
|
|
"presentable": false,
|
|
"unique": false,
|
|
"options": {
|
|
"maxSelect": 1,
|
|
"values": [
|
|
"rice",
|
|
"coffee",
|
|
"tea",
|
|
"sugarcane",
|
|
"miraa",
|
|
"avocados",
|
|
"maize",
|
|
"potatoes",
|
|
"sorghum",
|
|
"other_fruits",
|
|
"other_vegetables",
|
|
"other_grains",
|
|
"dragonfruit"
|
|
]
|
|
}
|
|
}`), edit_crop)
|
|
collection.Schema.AddField(edit_crop)
|
|
|
|
return dao.SaveCollection(collection)
|
|
})
|
|
}
|