mirror of
https://github.com/jorgev259/soc_site-astro.git
synced 2025-06-29 07:57:41 +00:00
11 lines
225 B
JavaScript
11 lines
225 B
JavaScript
import { DataTypes } from 'sequelize'
|
|
const model = (sequelize) => {
|
|
const Download = sequelize.define('download', {
|
|
title: DataTypes.STRING,
|
|
small: DataTypes.BOOLEAN
|
|
})
|
|
|
|
return Download
|
|
}
|
|
|
|
export default model
|