mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 18:30:26 -06:00
8 lines
171 B
Ruby
8 lines
171 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class MarkBookmarksTopicIdNotNull < ActiveRecord::Migration[6.0]
|
||
|
def change
|
||
|
change_column_null :bookmarks, :topic_id, false
|
||
|
end
|
||
|
end
|