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

20160305220806_remove_expires_at_from_snippets.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fc12b5b09e69fb2e893941e4c14c122f9a7501bd (plain)
1
2
3
4
5
class RemoveExpiresAtFromSnippets < ActiveRecord::Migration
  def change
    remove_column :snippets, :expires_at, :datetime
  end
end