Sha256: c04468e75fde4ea2b46f5af07a9f020dcbf75bf842d77686081c27f6b0780057
Contents?: true
Size: 306 Bytes
Versions: 44
Compression:
Stored size: 306 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 null: false end end def self.down drop_table :users end end
Version data entries
44 entries across 44 versions & 1 rubygems