debian-mirror-gitlab/db/migrate/20160508194200_remove_wall_enabled_from_projects.rb

6 lines
166 B
Ruby
Raw Normal View History

2016-06-02 11:05:42 +05:30
class RemoveWallEnabledFromProjects < ActiveRecord::Migration
def change
remove_column :projects, :wall_enabled, :boolean, default: true, null: false
end
end