Files
once-campfire/db/migrate/20240130003150_create_webhooks.rb
Kevin McConnell df76a227dc Hello world
First open source release of Campfire 🎉
2025-08-21 09:31:59 +01:00

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