7 lines
159 B
Ruby
7 lines
159 B
Ruby
|
class ChangeApiKeyLimit < ActiveRecord::Migration
|
||
|
def change
|
||
|
change_column :twitter_accounts, :api_key, :string, :limit => 17, :null => false
|
||
|
end
|
||
|
|
||
|
end
|