Sha256: 213086e7ffd40501a0bae4f4820afc0cc569bec1b603ef588c9cdd7f54b1d8f8
Contents?: true
Size: 304 Bytes
Versions: 99
Compression:
Stored size: 304 Bytes
Contents
class CreateUsers < ActiveRecord::Migration def self.up create_table :users do |t| t.string :login t.string :crypted_password t.string :salt t.integer :profile_id t.integer :updated_by t.timestamps end end def self.down drop_table :users end end
Version data entries
99 entries across 98 versions & 6 rubygems