Sha256: b1d017f40cc965a1937a1fbe1fa0577e475e2998a7a6ee0a057b136a38fa1905
Contents?: true
Size: 385 Bytes
Versions: 30
Compression:
Stored size: 385 Bytes
Contents
class CreateUsers < ActiveRecord::Migration def self.up create_table :users, :force => true do |t| t.string :login t.string :email t.string :crypted_password, :limit => 40 t.string :salt, :limit => 40 t.string :remember_token t.string :remember_token_expires_at t.timestamps end end def self.down drop_table :users end end
Version data entries
30 entries across 30 versions & 4 rubygems