class CreateOffers

Public Instance Methods

change() click to toggle source
# File db/migrate/20171111174521_create_offers.rb, line 2
def change
  create_table :offers do |t|
    t.string :title
    t.text :description
    t.date :published_on

    t.timestamps
    t.belongs_to :user, index: true
  end
end