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