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

Version Path
yhara-moneyrail-0.0.2 db/migrate/20090802070406_create_accounts.rb
moneyrail-0.1.6 db/migrate/20090802070406_create_accounts.rb
moneyrail-0.1.5 db/migrate/20090802070406_create_accounts.rb
moneyrail-0.1.4 db/migrate/20090802070406_create_accounts.rb
moneyrail-0.1.2 db/migrate/20090802070406_create_accounts.rb
moneyrail-0.1.1 db/migrate/20090802070406_create_accounts.rb
moneyrail-0.1.0 db/migrate/20090802070406_create_accounts.rb
moneyrail-0.0.2 db/migrate/20090802070406_create_accounts.rb