ActiveRecord::Schema.define :version => 0 do create_table :people, :force => true do |t| t.column :name, :string t.column :country, :string t.column :lucky_number, :integer t.column :birthdate, :date t.column :type, :string end end