gitlabhq/db/migrate/20111027051828_add_expires_...

6 lines
127 B
Ruby

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