Sha256: 9b2fd48d375f257f9e925a0d1199d417cfc2493e8c484f5b1c640ed3d5b09d2b
Contents?: true
Size: 231 Bytes
Versions: 4
Compression:
Stored size: 231 Bytes
Contents
class CreateAccounts < ActiveRecord::Migration def self.up create_table :accounts do |t| t.string :username t.string :password t.timestamps end end def self.down drop_table :accounts end end
Version data entries
4 entries across 3 versions & 1 rubygems