ref: master
db/migrate/003_create_profiles.rb
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
class CreateProfiles < ActiveRecord::Migration def self.up create_table :profiles do |t| t.column :name, :string t.column :type, :string t.column :identifier, :string t.column :environment_id, :integer t.column :active, :boolean, :default => true t.column :address, :string t.column :contact_phone, :string t.column :home_page_id, :integer #person fields t.column :user_id, :integer #enterprise fields t.column :region_id, :integer # for everything else t.column :data, :text t.column :created_at, :datetime end end def self.down drop_table :profiles end end |