mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-22 11:06:23 +00:00
15 lines
384 B
Ruby
15 lines
384 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
# Una instancia es la instancia por defecto
|
||
|
class AddDefaultToDistributedPressPublisher < ActiveRecord::Migration[6.1]
|
||
|
def up
|
||
|
add_column :distributed_press_publishers, :default, :boolean, default: false
|
||
|
|
||
|
DistributedPressPublisher.last.update(default: true)
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
remove_column :distributed_press_publishers, :default
|
||
|
end
|
||
|
end
|