public
Fork of halorgium/mephisto
Description: A mirror of the mephisto code-base
Homepage: http://mephistoblog.com/
Clone URL: git://github.com/technoweenie/mephisto.git
Click here to lend your support to: mephisto and make a donation at www.pledgie.com !
add some article indexes

git-svn-id: http://svn.techno-weenie.net/projects/mephisto/trunk@2910 
567b1171-46fb-0310-a4c9-b4bef9110e78
technoweenie (author)
Fri Jun 15 11:12:28 -0700 2007
commit  1ecc83ea94e95a4b39969ae1e40a4e749da3c136
tree    c70ec9de6fde8ffa06b019212b2d518e1ee83fc3
parent  ede5020b464a30e9fd510247fe18f87b0e983077
...
2
3
4
5
 
6
7
8
...
34
35
36
 
 
37
38
39
...
101
102
103
 
 
 
104
105
106
...
113
114
115
 
 
 
 
 
 
 
 
 
116
117
118
...
2
3
4
 
5
6
7
8
...
34
35
36
37
38
39
40
41
...
103
104
105
106
107
108
109
110
111
...
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
0
@@ -2,7 +2,7 @@
0
 # migrations feature of ActiveRecord to incrementally modify your database, and
0
 # then regenerate this schema definition.
0
 
0
-ActiveRecord::Schema.define(:version => 68) do
0
+ActiveRecord::Schema.define(:version => 72) do
0
 
0
   create_table "assets", :force => true do |t|
0
     t.column "content_type", :string
0
@@ -34,6 +34,8 @@ ActiveRecord::Schema.define(:version => 68) do
0
     t.column "position", :integer, :default => 1
0
   end
0
 
0
+ add_index "assigned_sections", ["article_id", "section_id"], :name => "idx_a_sections_article_section"
0
+
0
   create_table "cached_pages", :force => true do |t|
0
     t.column "url", :string
0
     t.column "references", :text
0
@@ -101,6 +103,9 @@ ActiveRecord::Schema.define(:version => 68) do
0
     t.column "assets_count", :integer, :default => 0
0
   end
0
 
0
+ add_index "contents", ["published_at"], :name => "idx_articles_published"
0
+ add_index "contents", ["article_id", "approved", "type"], :name => "idx_comments"
0
+
0
   create_table "events", :force => true do |t|
0
     t.column "mode", :string
0
     t.column "user_id", :integer
0
@@ -113,6 +118,15 @@ ActiveRecord::Schema.define(:version => 68) do
0
     t.column "site_id", :integer
0
   end
0
 
0
+ create_table "feedbacks", :force => true do |t|
0
+ t.column "site_id", :integer
0
+ t.column "name", :string
0
+ t.column "email", :string
0
+ t.column "body", :text
0
+ t.column "key", :string
0
+ t.column "created_at", :datetime
0
+ end
0
+
0
   create_table "memberships", :force => true do |t|
0
     t.column "site_id", :integer
0
     t.column "user_id", :integer

Comments

    No one has commented yet.