]> source.dussan.org Git - redmine.git/commitdiff
indexes added
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 8 Oct 2006 13:02:16 +0000 (13:02 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 8 Oct 2006 13:02:16 +0000 (13:02 +0000)
git-svn-id: http://redmine.rubyforge.org/svn/trunk@25 e93f8b46-1217-0410-a6f0-8f06a7374b81

redmine/db/migrate/001_setup.rb

index 00d788beca0f63a3143744bd1a65b78dd963325b..ee22c148b0fec4732f1c9ddfba4dcb71a8d3d677 100644 (file)
@@ -80,7 +80,9 @@ class Setup < ActiveRecord::Migration
       t.column "title", :string, :limit => 60, :default => "", :null => false\r
       t.column "description", :text, :default => ""\r
       t.column "created_on", :timestamp\r
-    end\r
+    end
+    
+    add_index "documents", ["project_id"], :name => "documents_project_id"\r
   \r
     create_table "enumerations", :force => true do |t|\r
       t.column "opt", :string, :limit => 4, :default => "", :null => false\r
@@ -90,7 +92,9 @@ class Setup < ActiveRecord::Migration
     create_table "issue_categories", :force => true do |t|\r
       t.column "project_id", :integer, :default => 0, :null => false\r
       t.column "name", :string, :limit => 30, :default => "", :null => false\r
-    end\r
+    end
+    
+    add_index "issue_categories", ["project_id"], :name => "issue_categories_project_id"\r
   \r
     create_table "issue_histories", :force => true do |t|\r
       t.column "issue_id", :integer, :default => 0, :null => false\r
@@ -142,7 +146,9 @@ class Setup < ActiveRecord::Migration
       t.column "description", :text, :default => "", :null => false\r
       t.column "author_id", :integer, :default => 0, :null => false\r
       t.column "created_on", :timestamp\r
-    end\r
+    end
+    
+    add_index "news", ["project_id"], :name => "news_project_id"\r
   \r
     create_table "permissions", :force => true do |t|\r
       t.column "controller", :string, :limit => 30, :default => "", :null => false\r
@@ -211,7 +217,9 @@ class Setup < ActiveRecord::Migration
       t.column "effective_date", :date, :null => false\r
       t.column "created_on", :timestamp\r
       t.column "updated_on", :timestamp\r
-    end\r
+    end
+    
+    add_index "versions", ["project_id"], :name => "versions_project_id"\r
   \r
     create_table "workflows", :force => true do |t|\r
       t.column "tracker_id", :integer, :default => 0, :null => false\r