002_create_profiles.rb 227 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 class CreateProfiles < ActiveRecord::Migration def self.up create_table :profiles do |t| t.column :name, :string t.column :identifier, :string end end def self.down drop_table :profiles end end