007_create_users.rb from crlove at Krugle
Show 007_create_users.rb syntax highlighted
class CreateUsers < ActiveRecord::Migration
def self.up
create_table :users do |t|
t.column :name, :string
t.column :hashed_password, :string
t.column :salt, :string
end
end
def self.down
drop_table :users
end
end
See more files for this project here