gitlabhq/db/migrate/20111027051828_add_expires_at_to_snippets.rb

6 lines
127 B
Ruby
Raw Normal View History

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