class <%= migration_class_name %> < ActiveRecord::Migration<%= migration_version %>
def self.up create_table :deimos_poll_info, force: true do |t| t.string :producer, null: false t.datetime :last_sent t.bigint :last_sent_id end add_index :deimos_poll_info, [:producer] end def self.down drop_table :deimos_poll_info end
end