mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
10 lines
296 B
Ruby
10 lines
296 B
Ruby
class RemoveStatisticColumns < ActiveRecord::Migration
|
|
def change
|
|
remove_column :profiles, :gender, :boolean
|
|
remove_column :profiles, :birthday, :date
|
|
remove_column :reservations, :user_id
|
|
remove_column :subscriptions, :user_id
|
|
remove_column :projects, :author_id
|
|
end
|
|
end
|