Skip to content

Instantly share code, notes, and snippets.

@jschementi
Created May 14, 2009 07:46
Show Gist options
  • Save jschementi/111555 to your computer and use it in GitHub Desktop.
Save jschementi/111555 to your computer and use it in GitHub Desktop.
class CreatePeople < ActiveRecord::Migration
def self.up
create_table :people do |t|
t.string :first_name
t.string :last_name
t.integer :age
t.timestamps
end
end
def self.down
drop_table :people
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment