summaryrefslogtreecommitdiff
path: root/db/migrate/20160718153603_add_has_external_wiki_to_projects.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20160718153603_add_has_external_wiki_to_projects.rb')
-rw-r--r--db/migrate/20160718153603_add_has_external_wiki_to_projects.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/db/migrate/20160718153603_add_has_external_wiki_to_projects.rb b/db/migrate/20160718153603_add_has_external_wiki_to_projects.rb
new file mode 100644
index 00000000000..55a3e954292
--- /dev/null
+++ b/db/migrate/20160718153603_add_has_external_wiki_to_projects.rb
@@ -0,0 +1,7 @@
+class AddHasExternalWikiToProjects < ActiveRecord::Migration
+ include Gitlab::Database::MigrationHelpers
+
+ def change
+ add_column :projects, :has_external_wiki, :boolean
+ end
+end