Skip to content

Commit

Permalink
Add migration for BlacklistedEvent.
Browse files Browse the repository at this point in the history
  • Loading branch information
lfu committed Aug 12, 2015
1 parent e380797 commit c32d39d
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions db/migrate/20150804194147_create_blacklisted_events.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
class CreateBlacklistedEvents < ActiveRecord::Migration
def change
create_table :blacklisted_events do |t|
t.string :event_name
t.string :provider_model
t.bigint :ems_id
t.boolean :system
t.boolean :enabled
t.timestamps
end
end
end

0 comments on commit c32d39d

Please sign in to comment.