mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
10 lines
264 B
Ruby
10 lines
264 B
Ruby
|
class AlterFacebookUserId < ActiveRecord::Migration
|
||
|
def up
|
||
|
change_column :facebook_user_infos, :facebook_user_id, :integer, :limit => 8, null: false
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
change_column :facebook_user_infos, :facebook_user_id, :integer, null: false
|
||
|
end
|
||
|
end
|