Class: CreateWebhooksTable
- Inherits:
-
ActiveRecord::Migration
- Object
- ActiveRecord::Migration
- CreateWebhooksTable
- Defined in:
- lib/generators/haz_webhooks/templates/migration.rb
Class Method Summary collapse
Class Method Details
.down ⇒ Object
12 13 14 |
# File 'lib/generators/haz_webhooks/templates/migration.rb', line 12 def self.down drop_table :webhooks end |
.up ⇒ Object
2 3 4 5 6 7 8 9 10 |
# File 'lib/generators/haz_webhooks/templates/migration.rb', line 2 def self.up create_table :webhooks, :force => true do |t| t.references :hook, :polymorphic => true t.string :url t.string :key t.boolean :active t. end end |