Skip to content
This repository has been archived by the owner on Aug 15, 2018. It is now read-only.

Commit

Permalink
what
Browse files Browse the repository at this point in the history
  • Loading branch information
James Cook committed Jan 5, 2009
1 parent d5cc2ba commit 8c35312
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions db/schema.rb
Expand Up @@ -167,6 +167,7 @@
t.string "name"
t.string "title"
t.string "full_title"
t.string "status"
t.text "body"
t.datetime "created_at"
t.datetime "updated_at"
Expand All @@ -177,7 +178,6 @@
t.boolean "published", :default => true
t.boolean "linked", :default => true
t.boolean "show_sub_menu", :default => false
t.string "status"
t.datetime "publish_at"
end

Expand All @@ -199,11 +199,6 @@
t.string "display_type"
end

create_table "plugin_schema_info", :id => false, :force => true do |t|
t.string "plugin_name"
t.integer "version"
end

create_table "posts", :force => true do |t|
t.integer "user_id"
t.integer "topic_id"
Expand All @@ -218,11 +213,20 @@
add_index "posts", ["topic_id", "created_at"], :name => "index_posts_on_topic_id"
add_index "posts", ["user_id", "created_at"], :name => "index_posts_on_user_id"

create_table "proto_page_plugin_versions", :force => true do |t|
t.integer "content_section_id"
t.integer "version"
t.string "name"
t.datetime "updated_at"
t.string "versioned_type"
end

create_table "proto_page_plugins", :force => true do |t|
t.string "name"
t.string "type"
t.datetime "created_at"
t.datetime "updated_at"
t.integer "version"
end

create_table "roles", :force => true do |t|
Expand Down

0 comments on commit 8c35312

Please sign in to comment.