thingspeak/db/migrate/20130621124211_change_api_key_limit.rb

7 lines
159 B
Ruby
Raw Normal View History

class ChangeApiKeyLimit < ActiveRecord::Migration
def change
change_column :twitter_accounts, :api_key, :string, :limit => 17, :null => false
end
end