Sha256: 825ef7b0e141ccc4a118a4d7b6fcbe2840ebc10cb8fb5079bf8553c82233a199

Contents?: true

Size: 236 Bytes

Versions: 6

Compression:

Stored size: 236 Bytes

Contents

class CreateAccountUsers < ActiveRecord::Migration
  def up
    create_table :account_users do |t|
      t.column :account_id, :integer
      t.column :user_id, :integer
    end
  end

  def down
    drop_table :account_users
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
iugusdk-1.0.0.alpha.5 db/migrate/20120529180814_create_account_users.rb
iugusdk-1.0.0.alpha.4 db/migrate/20120529180814_create_account_users.rb
iugusdk-1.0.0.alpha.3 db/migrate/20120529180814_create_account_users.rb
iugusdk-1.0.0.alpha.2 db/migrate/20120529180814_create_account_users.rb
iugusdk-1.0.0.alpha.1 db/migrate/20120529180814_create_account_users.rb
iugusdk-1.0.0.alpha.0 db/migrate/20120529180814_create_account_users.rb