mirror of https://github.com/fspc/BikeShed-1.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
562 B
26 lines
562 B
12 years ago
|
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.integer :action_id, :default => 0
|
||
|
|
||
|
t.timestamps
|
||
|
end
|
||
|
|
||
|
add_index :logs, [:loggable_id, :loggable_type, :context]
|
||
|
end
|
||
|
|
||
|
def self.down
|
||
|
drop_table :logs
|
||
|
end
|
||
|
end
|
||
|
|