chore: unnecessary test files

This commit is contained in:
Kingkor Roy Tirtho 2024-03-13 14:30:11 +06:00
parent ca2b81d572
commit f37ac06e1a
7 changed files with 0 additions and 173 deletions

View File

@ -1 +0,0 @@
version=0.12.1

View File

@ -1,63 +0,0 @@
migrate((db) => {
const collection = new Collection({
"id": "pevn93oxbnovw0s",
"created": "2023-02-01 13:01:08.893Z",
"updated": "2023-02-01 13:01:08.893Z",
"name": "tracks",
"type": "base",
"system": false,
"schema": [
{
"system": false,
"id": "ycnix0ai",
"name": "spotify_id",
"type": "text",
"required": true,
"unique": false,
"options": {
"min": 20,
"max": 22,
"pattern": ""
}
},
{
"system": false,
"id": "ih8fxzgh",
"name": "youtube_id",
"type": "text",
"required": true,
"unique": false,
"options": {
"min": 10,
"max": 11,
"pattern": ""
}
},
{
"system": false,
"id": "vzvqgsjf",
"name": "votes",
"type": "number",
"required": true,
"unique": false,
"options": {
"min": null,
"max": null
}
}
],
"listRule": null,
"viewRule": null,
"createRule": null,
"updateRule": null,
"deleteRule": null,
"options": {}
});
return Dao(db).saveCollection(collection);
}, (db) => {
const dao = new Dao(db);
const collection = dao.findCollectionByNameOrId("pevn93oxbnovw0s");
return dao.deleteCollection(collection);
})

View File

@ -1,17 +0,0 @@
migrate((db) => {
const dao = new Dao(db)
const collection = dao.findCollectionByNameOrId("pevn93oxbnovw0s")
collection.listRule = ""
collection.viewRule = ""
return dao.saveCollection(collection)
}, (db) => {
const dao = new Dao(db)
const collection = dao.findCollectionByNameOrId("pevn93oxbnovw0s")
collection.listRule = null
collection.viewRule = null
return dao.saveCollection(collection)
})

View File

@ -1,19 +0,0 @@
migrate((db) => {
const dao = new Dao(db)
const collection = dao.findCollectionByNameOrId("_pb_users_auth_")
collection.createRule = null
collection.updateRule = null
collection.deleteRule = null
return dao.saveCollection(collection)
}, (db) => {
const dao = new Dao(db)
const collection = dao.findCollectionByNameOrId("_pb_users_auth_")
collection.createRule = ""
collection.updateRule = "id = @request.auth.id"
collection.deleteRule = "id = @request.auth.id"
return dao.saveCollection(collection)
})

View File

@ -1,17 +0,0 @@
migrate((db) => {
const dao = new Dao(db)
const collection = dao.findCollectionByNameOrId("pevn93oxbnovw0s")
collection.createRule = "@request.auth.id != ''"
collection.updateRule = "@request.auth.id != ''"
return dao.saveCollection(collection)
}, (db) => {
const dao = new Dao(db)
const collection = dao.findCollectionByNameOrId("pevn93oxbnovw0s")
collection.createRule = null
collection.updateRule = null
return dao.saveCollection(collection)
})

View File

@ -1,17 +0,0 @@
migrate((db) => {
const dao = new Dao(db)
const collection = dao.findCollectionByNameOrId("pevn93oxbnovw0s")
collection.createRule = "@request.auth.id != '' && ((spotify_id ?= @collection.tracks.spotify_id && youtube_id ?= @collection.tracks.youtube_id) || (spotify_id ?!= @collection.tracks.spotify_id && youtube_id ?!= @collection.tracks.youtube_id))"
collection.updateRule = "@request.auth.id != '' && ((spotify_id ?= @collection.tracks.spotify_id && youtube_id ?= @collection.tracks.youtube_id) || (spotify_id ?!= @collection.tracks.spotify_id && youtube_id ?!= @collection.tracks.youtube_id))"
return dao.saveCollection(collection)
}, (db) => {
const dao = new Dao(db)
const collection = dao.findCollectionByNameOrId("pevn93oxbnovw0s")
collection.createRule = null
collection.updateRule = null
return dao.saveCollection(collection)
})

View File

@ -1,39 +0,0 @@
migrate((db) => {
const dao = new Dao(db)
const collection = dao.findCollectionByNameOrId("pevn93oxbnovw0s")
// update
collection.schema.addField(new SchemaField({
"system": false,
"id": "vzvqgsjf",
"name": "votes",
"type": "number",
"required": false,
"unique": false,
"options": {
"min": null,
"max": null
}
}))
return dao.saveCollection(collection)
}, (db) => {
const dao = new Dao(db)
const collection = dao.findCollectionByNameOrId("pevn93oxbnovw0s")
// update
collection.schema.addField(new SchemaField({
"system": false,
"id": "vzvqgsjf",
"name": "votes",
"type": "number",
"required": true,
"unique": false,
"options": {
"min": null,
"max": null
}
}))
return dao.saveCollection(collection)
})