Sha256: 7a0b6c87d84ccddd7a78f824a48f2547b9805b5f519611edf70333d6cb7c746d
Contents?: true
Size: 294 Bytes
Versions: 110
Compression:
Stored size: 294 Bytes
Contents
class CreateUsers < ActiveRecord::Migration def self.up create_table :users do |t| t.string :username t.string :crypted_password t.string :password_salt t.string :persistence_token t.timestamps end end def self.down drop_table :users end end
Version data entries
110 entries across 110 versions & 1 rubygems