sideplace_app/db/migrate/20150626090916_add_published_to_annonces.rb

7 lines
173 B
Ruby

class AddPublishedToAnnonces < ActiveRecord::Migration
def change
add_column :annonces, :published, :boolean
add_column :annonces, :list_head, :datetime
end
end