# $Id$ class EntryMigration < ActiveRecord::Migration def self.up create_table "entries", :force => true do |t| t.column "name", :string t.column "date", :datetime t.column "memo", :text t.column "amount", :integer # Currency::Money t.column "approved", :boolean end end def self.down drop_table "entries" end end