Created
June 29, 2011 20:37
Revisions
-
nicinabox renamed this gist
Jun 29, 2011 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
nicinabox revised this gist
Jun 29, 2011 . 1 changed file with 0 additions and 2 deletions.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -10,7 +10,5 @@ class AddAreasPortfolioEntries < ActiveRecord::Migration def self.down drop_table "areas_portfolio_entries" end end -
nicinabox revised this gist
Jun 29, 2011 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,7 +2,7 @@ class AddAreasPortfolioEntries < ActiveRecord::Migration def self.up create_table "areas_portfolio_entries", :id => false do |t| t.references :portfolio_entry t.references :area end add_index :areas_portfolio_entries, :portfolio_entry_id add_index :areas_portfolio_entries, :area_id -
nicinabox revised this gist
Jun 29, 2011 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,8 +1,8 @@ class AddAreasPortfolioEntries < ActiveRecord::Migration def self.up create_table "areas_portfolio_entries", :id => false do |t| t.references :portfolio_entry t.references :area_id end add_index :areas_portfolio_entries, :portfolio_entry_id add_index :areas_portfolio_entries, :area_id -
nicinabox created this gist
Jun 29, 2011 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ class AddAreasPortfolioEntries < ActiveRecord::Migration def self.up create_table "areas_portfolio_entries", :id => false do |t| t.integer :portfolio_entry_id t.integer :area_id end add_index :areas_portfolio_entries, :portfolio_entry_id add_index :areas_portfolio_entries, :area_id end def self.down drop_table "areas_portfolio_entries" remove_index :areas_portfolio_entries, :portfolio_entry_id remove_index :areas_portfolio_entries, :area_id end end