Skip to content

Instantly share code, notes, and snippets.

@noahm
Created August 29, 2010 03:08
Show Gist options
  • Save noahm/555908 to your computer and use it in GitHub Desktop.
Save noahm/555908 to your computer and use it in GitHub Desktop.
class CreateUsers < ActiveRecord::Migration
def self.up
create_table :users do |t|
t.string :login
t.string :hashed_password
t.string :salt
t.timestamps
end
end
def self.down
drop_table :users
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment