mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 10:33:43 +08:00
13 lines
322 B
Ruby
13 lines
322 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class CreateRedeliveringWebhookEvents < ActiveRecord::Migration[7.0]
|
||
|
def change
|
||
|
create_table :redelivering_webhook_events do |t|
|
||
|
t.belongs_to :web_hook_event, null: false, index: true
|
||
|
t.boolean :processing, default: false, null: false
|
||
|
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|