mirror of
https://github.com/discourse/discourse.git
synced 2024-11-27 09:03:44 +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
|