Sha256: bb4f5fa017803c02fd7cf6f53a01c91fadc82f2d0f69d55f8f1043930a20bfc0
Contents?: true
Size: 311 Bytes
Versions: 22
Compression:
Stored size: 311 Bytes
Contents
class CreateUsers < ActiveRecord::Migration[4.2] 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
22 entries across 22 versions & 2 rubygems