mirror of
https://github.com/ditkrg/outboxable.git
synced 2026-01-22 13:56:49 +00:00
26 lines
738 B
Ruby
26 lines
738 B
Ruby
class CreateOutboxableOutboxes < ActiveRecord::Migration[7.0]
|
|
def change
|
|
enable_extension 'pgcrypto' unless extension_enabled?('pgcrypto')
|
|
|
|
create_table :outboxes, id: :uuid, default: 'gen_random_uuid()' do |t|
|
|
t.integer :status, null: false, default: 0
|
|
|
|
t.string :exchange, null: false, default: ''
|
|
t.string :routing_key, null: false, default: ''
|
|
|
|
t.integer :attempts, null: false, default: 0
|
|
t.datetime :last_attempted_at, null: true
|
|
t.datetime :retry_at, null: true
|
|
|
|
t.jsonb :payload, default: {}
|
|
t.jsonb :headers, default: {}
|
|
|
|
t.integer :size, null: false, default: 0
|
|
|
|
t.references :outboxable, polymorphic: true, null: true
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|