Sha256: eb2950642c8e244f7f1e080263498a47ad4fd4c5f6db39b29e5472916a221d76
Contents?: true
Size: 228 Bytes
Versions: 8
Compression:
Stored size: 228 Bytes
Contents
class CreateAccounts < ActiveRecord::Migration def self.up create_table :accounts do |t| t.string :name t.integer :position t.timestamps end end def self.down drop_table :accounts end end
Version data entries
8 entries across 8 versions & 2 rubygems