~michaelforrest/use-case-mapper/trunk

« back to all changes in this revision

Viewing changes to vendor/rails/activerecord/test/migrations/valid/1_people_have_last_names.rb

  • Committer: Michael Forrest
  • Date: 2010-10-15 16:28:50 UTC
  • Revision ID: michael.forrest@canonical.com-20101015162850-tj2vchanv0kr0dun
refrozeĀ gems

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
class PeopleHaveLastNames < ActiveRecord::Migration
 
2
  def self.up
 
3
    add_column "people", "last_name", :string
 
4
  end
 
5
 
 
6
  def self.down
 
7
    remove_column "people", "last_name"
 
8
  end
 
9
end
 
 
b'\\ No newline at end of file'