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

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