mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-11 05:05:07 -05:00
13 lines
259 B
JavaScript
13 lines
259 B
JavaScript
const mongoose = require("mongoose")
|
|
|
|
const bannerSchema = new mongoose.Schema({
|
|
logoUrl: String,
|
|
description: String,
|
|
link: String,
|
|
textColor: String,
|
|
bgColor: String,
|
|
staleAfter: Date,
|
|
})
|
|
|
|
module.exports = mongoose.model("Banner", bannerSchema)
|