Sha256: 01a1e7038da1277893157429530054d24ed9226206f27746c9f2246c5350c8c6

Contents?: true

Size: 269 Bytes

Versions: 4

Compression:

Stored size: 269 Bytes

Contents

class AddFirstAndLastNamesToUsers < ActiveRecord::Migration
  def self.up
    add_column :users, :first_name, :string
    add_column :users, :last_name, :string
  end

  def self.down
    remove_column :users, :last_name
    remove_column :users, :first_name
  end
end

Version data entries

4 entries across 3 versions & 1 rubygems

Version Path
admin_assistant-2.1.0 rails_3_0/db/migrate/20091115134559_add_first_and_last_names_to_users.rb
admin_assistant-2.0.1 rails_2_test/db/migrate/20091115134559_add_first_and_last_names_to_users.rb
admin_assistant-2.0.1 rails_3_test/db/migrate/20091115134559_add_first_and_last_names_to_users.rb
admin_assistant-1.0.1 test_rails_app/db/migrate/20091115134559_add_first_and_last_names_to_users.rb