rosa-build/db/migrate/20111012133633_create_event...

23 lines
494 B
Ruby
Raw Normal View History

class CreateEventLogs < ActiveRecord::Migration
def self.up
create_table :event_logs do |t|
2014-09-02 18:22:27 +01:00
t.references :user, foreign_key: false, index: true
t.string :user_name
2014-09-02 18:22:27 +01:00
t.references :object, polymorphic: true, index: true
t.string :object_name
t.string :ip
t.string :kind
t.string :protocol
t.string :controller
t.string :action
t.text :message
t.timestamps
end
end
def self.down
drop_table :event_logs
end
end