adopt-a-hydrant/db/migrate/00000000000004_create_rails...

15 lines
472 B
Ruby
Raw Normal View History

2011-08-09 19:05:52 +00:00
class CreateRailsAdminHistoriesTable < ActiveRecord::Migration
def change
2011-08-09 19:05:52 +00:00
create_table :rails_admin_histories do |t|
t.string :message # title, name, or object_id
t.string :username
t.integer :item
t.string :table
t.integer :month, :limit => 2
t.integer :year, :limit => 5
t.timestamps
end
add_index(:rails_admin_histories, [:item, :table, :month, :year], :name => 'index_rails_admin_histories' )
end
end