1
0
mirror of https://github.com/fspc/BikeShed-1.git synced 2025-02-28 16:53:23 -05:00
BikeShed-1/db/migrate/20121204220660_acts_as_loggable_migration.rb
2012-12-26 21:21:58 -05:00

26 lines
573 B
Ruby

class ActsAsLoggableMigration < ActiveRecord::Migration
def self.up
create_table :logs do |t|
t.references :loggable, :polymorphic => true
t.references :logger, :polymorphic => true
t.string :context, :limit => 128
t.datetime "start_date", :null => false
t.datetime "end_date", :null => false
t.text :description, :default => ""
t.references :log_action, :polymorphic => true
t.timestamps
end
add_index :logs, [:loggable_id, :loggable_type, :context]
end
def self.down
drop_table :logs
end
end