class CreateOrganizations < ActiveRecord::Migration def change create_table :organizations do |t| t.string :name t.string :slug t.timestamps end add_index :organizations, :slug add_column :projects, :organization_id, :integer add_index :projects, :organization_id end end