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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorAleksei Kvitinskii <aleksei.wm@gmail.com>2011-11-04 12:11:14 +0400
committerAleksei Kvitinskii <aleksei.wm@gmail.com>2011-11-04 12:11:14 +0400
commitb946da44695c9c8fe8867bb87bcdf801c52177d3 (patch)
tree9e827d32d1fded164633b5bac151991c4901512d /db
parent6977150f04be1bfe365e1cd86e3f8143c34a51bf (diff)
added tags to form
Diffstat (limited to 'db')
-rw-r--r--db/schema.rb19
1 files changed, 18 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 13c4db0cc49..3d430f4c296 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -11,7 +11,7 @@
#
# It's strongly recommended to check this file into your version control system.
-ActiveRecord::Schema.define(:version => 20111027152724) do
+ActiveRecord::Schema.define(:version => 20111101222453) do
create_table "issues", :force => true do |t|
t.string "title"
@@ -68,6 +68,23 @@ ActiveRecord::Schema.define(:version => 20111027152724) do
t.datetime "expires_at"
end
+ create_table "taggings", :force => true do |t|
+ t.integer "tag_id"
+ t.integer "taggable_id"
+ t.string "taggable_type"
+ t.integer "tagger_id"
+ t.string "tagger_type"
+ t.string "context"
+ t.datetime "created_at"
+ end
+
+ add_index "taggings", ["tag_id"], :name => "index_taggings_on_tag_id"
+ add_index "taggings", ["taggable_id", "taggable_type", "context"], :name => "index_taggings_on_taggable_id_and_taggable_type_and_context"
+
+ create_table "tags", :force => true do |t|
+ t.string "name"
+ end
+
create_table "users", :force => true do |t|
t.string "email", :default => "", :null => false
t.string "encrypted_password", :limit => 128, :default => "", :null => false