gitlab-org--gitlab-foss/db/migrate/20160508194200_remove_wall_enabled_from_projects.rb
2016-05-08 15:47:42 -04:00

5 lines
166 B
Ruby

class RemoveWallEnabledFromProjects < ActiveRecord::Migration
def change
remove_column :projects, :wall_enabled, :boolean, default: true, null: false
end
end