Your IP : 216.73.216.93


Current Path : /home/users/unlimited/www/facebook.codeskitter.site/nodejs/models/
Upload File :
Current File : /home/users/unlimited/www/facebook.codeskitter.site/nodejs/models/wo_colored_posts.js

/* jshint indent: 2 */

module.exports = function(sequelize, DataTypes) {
  return sequelize.define('Wo_Colored_Posts', {
    id: {
      autoIncrement: true,
      type: DataTypes.INTEGER,
      allowNull: false,
      primaryKey: true
    },
    color_1: {
      type: DataTypes.STRING(50),
      allowNull: false,
      defaultValue: ""
    },
    color_2: {
      type: DataTypes.STRING(50),
      allowNull: false,
      defaultValue: ""
    },
    text_color: {
      type: DataTypes.STRING(50),
      allowNull: false,
      defaultValue: ""
    },
    image: {
      type: DataTypes.STRING(250),
      allowNull: false,
      defaultValue: ""
    },
    time: {
      type: DataTypes.STRING(50),
      allowNull: false,
      defaultValue: ""
    }
  }, {
    sequelize,
    tableName: 'Wo_Colored_Posts'
  });
};