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:
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|