Sha256: e25bb1a1f905e97af3760751f31fffdaaa40c6769111f107826d2d77e5dc7423

Contents?: true

Size: 273 Bytes

Versions: 1

Compression:

Stored size: 273 Bytes

Contents

class AddContactColumnsToPeople < ActiveRecord::Migration
  def change
    add_column :people, :phone, :string, limit: 14
    add_column :people, :fax, :string, limit: 14
    add_column :people, :mobile, :string, limit: 14
    add_column :people, :email, :string
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
unico-training-7.8.0 db/migrate/20110912173117_add_contact_columns_to_people.rb