1
0
mirror of https://github.com/fspc/bike-database.git synced 2025-04-04 10:03:22 -04:00
bike-database/db/migrate/20160731014517_remove_entry_date_column_from_bikes.rb

6 lines
124 B
Ruby

class RemoveEntryDateColumnFromBikes < ActiveRecord::Migration
def change
remove_column :bikes, :entry_date
end
end