mirror of
https://github.com/basecamp/once-campfire.git
synced 2026-05-03 17:34:35 +09:00
11 lines
214 B
Ruby
11 lines
214 B
Ruby
class CreateWebhooks < ActiveRecord::Migration[7.2]
|
|
def change
|
|
create_table :webhooks do |t|
|
|
t.references :user, null: false, foreign_key: true
|
|
t.string :url
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|