diaspora/db/migrate/20161015174300_remove_empty_pod.rb
2017-09-17 19:29:15 +02:00

13 lines
267 B
Ruby

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