mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 18:44:16 +00:00
23 lines
305 B
JavaScript
23 lines
305 B
JavaScript
export default {
|
|
name: "RadioProfile",
|
|
collection: "radio_profiles",
|
|
schema: {
|
|
user_id: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
created_at: {
|
|
type: Date,
|
|
required: true,
|
|
},
|
|
token: {
|
|
type: String,
|
|
required: true,
|
|
select: false,
|
|
},
|
|
background: {
|
|
type: String,
|
|
},
|
|
},
|
|
}
|