7 lines
155 B
Ruby
7 lines
155 B
Ruby
|
# Migration type: online
|
||
|
class RemovePublicFromNamespace < ActiveRecord::Migration
|
||
|
def change
|
||
|
remove_column :namespaces, :public, :boolean
|
||
|
end
|
||
|
end
|