remove unecessary models

This commit is contained in:
SrGooglo 2023-04-10 16:16:32 +00:00
parent 92f26fd812
commit 69ffa93227
2 changed files with 0 additions and 43 deletions

View File

@ -1,25 +0,0 @@
export default {
name: "StreamingInfo",
collection: "streamingInfos",
schema: {
user_id: {
type: String,
required: true
},
title: {
type: String,
default: "Untitled"
},
description: {
type: String,
default: "No description"
},
category: {
type: String,
default: "Other"
},
thumbnail: {
type: String
},
}
}

View File

@ -1,18 +0,0 @@
export default {
name: "StreamingKey",
collection: "streamingKeys",
schema: {
username: {
type: String,
required: true,
},
user_id: {
type: String,
required: true,
},
key: {
type: String,
required: true,
}
}
}