Skip to content
This repository has been archived by the owner on Feb 6, 2024. It is now read-only.

Commit

Permalink
Fix length of text fields
Browse files Browse the repository at this point in the history
  • Loading branch information
pencil committed Aug 27, 2014
1 parent 9d8d330 commit c24c5bd
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions db/migrate/20140827183611_fix_length_of_text_fields.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
class FixLengthOfTextFields < ActiveRecord::Migration
def change
change_column :casino_proxy_tickets, :service, :text, :limit => nil
change_column :casino_service_tickets, :service, :text, :limit => nil
change_column :casino_ticket_granting_tickets, :user_agent, :text, :limit => nil
end
end

0 comments on commit c24c5bd

Please sign in to comment.