class CreateManufacturers < ActiveRecord::Migration[5.1] def change create_table :dhatu_manufacturers do |t| t.string :name, limit: 128 t.string :description, limit: 1024 t.text :remarks t.string :website, limit: 512 t.string :status, :null => false, :default=>"unpublished", :limit=>16 t.boolean :featured, default: false t.integer :priority, default: 1, null: false t.timestamps end end end