UNPKG

meme-magic

Version:

An A-Frame, React, Redux front-end with Sessions, Websockets, SQL, and Authentication built into the backend.

16 lines (13 loc) 244 B
'use strict'; import db from '../db'; const Type = db.Sequelize; export default db.define('troll', { Title: { type: Type.STRING, allowNull: false }, imageURL: { type: Type.STRING, allowNull: false } });