Added index for pages.
This commit is contained in:
parent
e75a42d509
commit
24854984ed
2 changed files with 5 additions and 1 deletions
|
@ -11,7 +11,8 @@ class CreatePages < ActiveRecord::Migration
|
|||
|
||||
t.timestamps
|
||||
end
|
||||
|
||||
add_index :pages, :title
|
||||
add_index :pages, :permalink
|
||||
Page.create_versioned_table # Automaticly creates pages_versions table
|
||||
end
|
||||
|
||||
|
|
|
@ -237,6 +237,9 @@ ActiveRecord::Schema.define(:version => 20090812110010) do
|
|||
t.datetime "updated_at"
|
||||
end
|
||||
|
||||
add_index "pages", ["permalink"], :name => "index_pages_on_permalink"
|
||||
add_index "pages", ["title"], :name => "index_pages_on_title"
|
||||
|
||||
create_table "schema_info", :id => false, :force => true do |t|
|
||||
t.integer "version"
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue