mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-21 22:46:21 +00:00
14 lines
385 B
Ruby
14 lines
385 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
|