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:
authorconnorshea <connor.james.shea@gmail.com>2016-04-01 01:40:39 +0300
committerconnorshea <connor.james.shea@gmail.com>2016-04-01 02:09:36 +0300
commit85cc1729596ac1e5b31d8cfa1daa07477db6033d (patch)
tree1f65c29321f5f6f9f6875221b83bb30e8115b178 /db
parent82539cff700931532b22b6a8e3d6832137fc5d55 (diff)
Remove "Congratulations!" tweet button on newly-created project.
I’ve removed everything related to the feature based on this commit: ce08f919f34fd8849834365 Resolves #10857.
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20160331223143_remove_twitter_sharing_enabled_from_application_settings.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20160331223143_remove_twitter_sharing_enabled_from_application_settings.rb b/db/migrate/20160331223143_remove_twitter_sharing_enabled_from_application_settings.rb
new file mode 100644
index 00000000000..0d736e323b6
--- /dev/null
+++ b/db/migrate/20160331223143_remove_twitter_sharing_enabled_from_application_settings.rb
@@ -0,0 +1,5 @@
+class RemoveTwitterSharingEnabledFromApplicationSettings < ActiveRecord::Migration
+ def change
+ remove_column :application_settings, :twitter_sharing_enabled, :boolean
+ end
+end