gitlab-org--gitlab-foss/db/migrate/20111027051828_add_expires_...

6 lines
127 B
Ruby
Raw Normal View History

2011-10-27 05:20:45 +00:00
class AddExpiresAtToSnippets < ActiveRecord::Migration
def change
add_column :snippets, :expires_at, :datetime
end
end