Sha256: 5ea3e5ef659e6dc233410cdc21ec190a1a82511b225cdf2c131f8b0c36e4151e
Contents?: true
Size: 305 Bytes
Versions: 17
Compression:
Stored size: 305 Bytes
Contents
# encoding: utf-8 class CreateProjects < ActiveRecord::Migration def change create_table :projects do |t| t.string :name t.integer :customer_id t.integer :supplier_id t.timestamps end add_index :projects, :customer_id add_index :projects, :supplier_id end end
Version data entries
17 entries across 17 versions & 2 rubygems