mirror of
https://github.com/fspc/bike-database.git
synced 2025-12-17 08:35:34 -05:00
6 lines
124 B
Ruby
6 lines
124 B
Ruby
class RemoveEntryDateColumnFromBikes < ActiveRecord::Migration
|
|
def change
|
|
remove_column :bikes, :entry_date
|
|
end
|
|
end
|