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("o7i7dkfc0x2bw22")
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
// update
|
||
|
edit_crops := &schema.SchemaField{}
|
||
|
json.Unmarshal([]byte(`{
|
||
|
"system": false,
|
||
|
"id": "ltb2rowr",
|
||
|
"name": "crops",
|
||
|
"type": "select",
|
||
|
"required": true,
|
||
|
"presentable": false,
|
||
|
"unique": false,
|
||
|
"options": {
|
||
|
"maxSelect": 12,
|
||
|
"values": [
|
||
|
"rice",
|
||
|
"coffee",
|
||
|
"tea",
|
||
|
"sugarcane",
|
||
|
"miraa",
|
||
|
"avocados",
|
||
|
"maize",
|
||
|
"potatoes",
|
||
|
"sorghum",
|
||
|
"other_fruits",
|
||
|
"other_vegetables",
|
||
|
"other_grains",
|
||
|
"dragonfruit",
|
||
|
"hay",
|
||
|
"beans",
|
||
|
"soya"
|
||
|
]
|
||
|
}
|
||
|
}`), edit_crops)
|
||
|
collection.Schema.AddField(edit_crops)
|
||
|
|
||
|
return dao.SaveCollection(collection)
|
||
|
}, func(db dbx.Builder) error {
|
||
|
dao := daos.New(db);
|
||
|
|
||
|
collection, err := dao.FindCollectionByNameOrId("o7i7dkfc0x2bw22")
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
// update
|
||
|
edit_crops := &schema.SchemaField{}
|
||
|
json.Unmarshal([]byte(`{
|
||
|
"system": false,
|
||
|
"id": "ltb2rowr",
|
||
|
"name": "crops",
|
||
|
"type": "select",
|
||
|
"required": true,
|
||
|
"presentable": false,
|
||
|
"unique": false,
|
||
|
"options": {
|
||
|
"maxSelect": 12,
|
||
|
"values": [
|
||
|
"rice",
|
||
|
"coffee",
|
||
|
"tea",
|
||
|
"sugarcane",
|
||
|
"miraa",
|
||
|
"avocados",
|
||
|
"maize",
|
||
|
"potatoes",
|
||
|
"sorghum",
|
||
|
"other_fruits",
|
||
|
"other_vegetables",
|
||
|
"other_grains",
|
||
|
"dragonfruit"
|
||
|
]
|
||
|
}
|
||
|
}`), edit_crops)
|
||
|
collection.Schema.AddField(edit_crops)
|
||
|
|
||
|
return dao.SaveCollection(collection)
|
||
|
})
|
||
|
}
|