123456789101112131415161718192021222324252627 |
- module.exports = ( app ) => {
- this.conn = new require('../bin/mysql').mysqlConn();
-
- const New = this.conn.define('news', {
-
-
-
-
-
- websiteSlug: this.conn.Sequelize.STRING,
- link: this.conn.Sequelize.STRING,
- thumb: this.conn.Sequelize.STRING,
- title: this.conn.Sequelize.STRING,
- date: this.conn.Sequelize.STRING,
- content: this.conn.Sequelize.TEXT,
- tag: this.conn.Sequelize.STRING,
-
-
- });
- this.query = New;
- return this;
- }
|