Delete old migration

This commit is contained in:
Erik Michaels-Ober 2011-08-09 12:32:14 -07:00
parent 66f205c2bf
commit 210f1264d0
1 changed files with 0 additions and 18 deletions

View File

@ -1,18 +0,0 @@
class CreateRailsAdminHistoriesTable < ActiveRecord::Migration
def self.up
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
def self.down
drop_table :rails_admin_histories
end
end