gitlabhq/db/migrate/20111027051828_add_expires_at_to_snippets.rb
2011-10-27 10:20:45 +05:00

6 lines
127 B
Ruby

class AddExpiresAtToSnippets < ActiveRecord::Migration
def change
add_column :snippets, :expires_at, :datetime
end
end