5 lines
166 B
Ruby
5 lines
166 B
Ruby
class RemoveWallEnabledFromProjects < ActiveRecord::Migration
|
|
def change
|
|
remove_column :projects, :wall_enabled, :boolean, default: true, null: false
|
|
end
|
|
end
|