diff options
author | connorshea <connor.james.shea@gmail.com> | 2016-03-31 16:40:39 -0600 |
---|---|---|
committer | connorshea <connor.james.shea@gmail.com> | 2016-03-31 17:09:36 -0600 |
commit | 85cc1729596ac1e5b31d8cfa1daa07477db6033d (patch) | |
tree | 1f65c29321f5f6f9f6875221b83bb30e8115b178 /db | |
parent | 82539cff700931532b22b6a8e3d6832137fc5d55 (diff) | |
download | gitlab-ce-85cc1729596ac1e5b31d8cfa1daa07477db6033d.tar.gz |
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.rb | 5 |
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 |