7 lines
124 B
Ruby
7 lines
124 B
Ruby
|
class ChangeApiKey < ActiveRecord::Migration
|
||
|
def change
|
||
|
change_column :twitter_accounts, :api_key, :string
|
||
|
end
|
||
|
|
||
|
end
|