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
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-04-10 23:20:00 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-04-10 23:20:00 +0400
commit0ae892007dac045e58cab793806f778b90ce6c2e (patch)
tree41beb9d808fa23b8dfff6119e4c6faa1d630e97d /db/schema.rb
parent0415566b3796f500e7f694a0aee4882752d150c1 (diff)
Remove Wiki and db table since we use gollum now
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb15
1 files changed, 1 insertions, 14 deletions
diff --git a/db/schema.rb b/db/schema.rb
index b11311e552a..33407e600a4 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 => 20130404164628) do
+ActiveRecord::Schema.define(:version => 20130410175022) do
create_table "events", :force => true do |t|
t.string "target_type"
@@ -300,17 +300,4 @@ ActiveRecord::Schema.define(:version => 20130404164628) do
t.integer "service_id"
end
- create_table "wikis", :force => true do |t|
- t.string "title"
- t.text "content"
- t.integer "project_id"
- t.datetime "created_at", :null => false
- t.datetime "updated_at", :null => false
- t.string "slug"
- t.integer "user_id"
- end
-
- add_index "wikis", ["project_id"], :name => "index_wikis_on_project_id"
- add_index "wikis", ["slug"], :name => "index_wikis_on_slug"
-
end