Skip to content

Instantly share code, notes, and snippets.

@ribeiroevandro
Created October 9, 2013 23:31
Show Gist options
  • Select an option

  • Save ribeiroevandro/6910381 to your computer and use it in GitHub Desktop.

Select an option

Save ribeiroevandro/6910381 to your computer and use it in GitHub Desktop.
class CreateUsers < ActiveRecord::Migration
def self.up
create_table :users do |t|
t.string :username
t.string :email
t.string :password_hash
t.string :password_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