diaspora/db/migrate/20161015174300_remove_empty_pod.rb
2016-10-27 02:25:40 +02:00

11 lines
225 B
Ruby

class RemoveEmptyPod < ActiveRecord::Migration
def up
Pod.delete_all("host IS NULL")
change_column :pods, :host, :string, null: false
end
def down
change_column :pods, :host, :string, null: true
end
end