20151112185941_create_pointsales.rb 237 B

123456789101112
  1. class CreatePointsales < ActiveRecord::Migration
  2. def change
  3. create_table :pointsales do |t|
  4. t.string :name
  5. t.string :address
  6. t.text :notes
  7. t.integer :status
  8. t.timestamps null: false
  9. end
  10. end
  11. end