spec/db/schema.rb in acts_as_audited-2.0.0.rc4 vs spec/db/schema.rb in acts_as_audited-2.0.0.rc5
- old
+ new
@@ -10,15 +10,27 @@
t.column :updated_at, :datetime
end
create_table :companies, :force => true do |t|
t.column :name, :string
+ t.column :owner_id, :integer
end
+ create_table :authors, :force => true do |t|
+ t.column :name, :string
+ end
+
+ create_table :books, :force => true do |t|
+ t.column :authord_id, :integer
+ t.column :title, :string
+ end
+
create_table :audits, :force => true do |t|
t.column :auditable_id, :integer
t.column :auditable_type, :string
+ t.column :association_id, :integer
+ t.column :association_type, :string
t.column :user_id, :integer
t.column :user_type, :string
t.column :username, :string
t.column :action, :string
t.column :audited_changes, :text
@@ -27,8 +39,9 @@
t.column :remote_address, :string
t.column :created_at, :datetime
end
add_index :audits, [:auditable_id, :auditable_type], :name => 'auditable_index'
+ add_index :audits, [:association_id, :association_type], :name => 'association_index'
add_index :audits, [:user_id, :user_type], :name => 'user_index'
add_index :audits, :created_at
end