VEL-Connect/velconnect/migrations/1689187696_updated_DataBloc...

73 lines
1.5 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("3qwwkz4wb0lyi78")
if err != nil {
return err
}
// update
edit_owner := &schema.SchemaField{}
json.Unmarshal([]byte(`{
"system": false,
"id": "a3d7pkoh",
"name": "owner",
"type": "relation",
"required": false,
"unique": false,
"options": {
"collectionId": "_pb_users_auth_",
"cascadeDelete": false,
"minSelect": null,
"maxSelect": 1,
"displayFields": [
"username"
]
}
}`), edit_owner)
collection.Schema.AddField(edit_owner)
return dao.SaveCollection(collection)
}, func(db dbx.Builder) error {
dao := daos.New(db);
collection, err := dao.FindCollectionByNameOrId("3qwwkz4wb0lyi78")
if err != nil {
return err
}
// update
edit_owner := &schema.SchemaField{}
json.Unmarshal([]byte(`{
"system": false,
"id": "a3d7pkoh",
"name": "owner",
"type": "relation",
"required": false,
"unique": false,
"options": {
"collectionId": "_pb_users_auth_",
"cascadeDelete": false,
"minSelect": null,
"maxSelect": 1,
"displayFields": []
}
}`), edit_owner)
collection.Schema.AddField(edit_owner)
return dao.SaveCollection(collection)
})
}