Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/git/git-scm.com.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorScott Chacon <schacon@gmail.com>2012-05-04 00:05:23 +0400
committerScott Chacon <schacon@gmail.com>2012-05-04 00:05:23 +0400
commit362bbf2884b8f3ca747da45cf213d859258f60bc (patch)
treeca0523fd23d03014d882d1ef1e9d213dde28a5a5 /db
parenta29a1169e3e2e4b559253939dda9565f5c073417 (diff)
add local indexing back as another task
Diffstat (limited to 'db')
-rw-r--r--db/schema.rb16
1 files changed, 8 insertions, 8 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 21472c17..90294ce3 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -32,19 +32,19 @@ ActiveRecord::Schema.define(:version => 20120423150252) do
add_index "chapters", ["book_id"], :name => "index_chapters_on_book_id"
create_table "doc_files", :force => true do |t|
- t.string "name"
- t.timestamp "created_at", :null => false
- t.timestamp "updated_at", :null => false
+ t.string "name"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
end
add_index "doc_files", ["name"], :name => "index_doc_files_on_name"
create_table "doc_versions", :force => true do |t|
- t.integer "version_id"
- t.integer "doc_id"
- t.integer "doc_file_id"
- t.timestamp "created_at", :null => false
- t.timestamp "updated_at", :null => false
+ t.integer "version_id"
+ t.integer "doc_id"
+ t.integer "doc_file_id"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
end
create_table "docs", :force => true do |t|