Asset-Tracker/db/migrate/20100816185859_create_comments.rb

16 lines
252 B
Ruby
Raw Normal View History

2011-06-15 01:08:28 +00:00
class CreateComments < ActiveRecord::Migration
def self.up
create_table :comments do |t|
t.integer :asset_id
t.string :commenter
t.text :body
t.timestamps
end
end
def self.down
drop_table :comments
end
end