class CreateProjects < ActiveRecord::Migration def change create_table :projects do |t| t.string :name t.timestamps end end end class CreateTasks < ActiveRecord::Migration def change create_table :tasks do |t| t.string :type t.references :project, index: true t.string :name t.timestamps end end end class CreateUsers < ActiveRecord::Migration def change create_table :users do |t| t.string :type t.references :project, index: true t.string :name t.timestamps end end end