mirror of
https://github.com/discourse/discourse.git
synced 2025-02-13 12:23:27 +08: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
|