mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-22 16:26:21 +00:00
9 lines
243 B
Ruby
9 lines
243 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
# Estado de los reportes remotos
|
||
|
class AddStateToRemoteFlags < ActiveRecord::Migration[6.1]
|
||
|
def change
|
||
|
add_column :activity_pub_remote_flags, :aasm_state, :string, null: false, default: 'waiting'
|
||
|
end
|
||
|
end
|