mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 16:18:42 -05:00
9 lines
210 B
Ruby
9 lines
210 B
Ruby
class AllowNullUserIdOnTopics < ActiveRecord::Migration
|
|
def up
|
|
change_column :topics, :user_id, :integer, null: true
|
|
end
|
|
|
|
def down
|
|
change_column :topics, :user_id, :integer, null: false
|
|
end
|
|
end
|