Store Session ID for Event::SynchronizedEditor

This commit is contained in:
Sebastian Serth
2023-09-08 11:22:57 +02:00
committed by Sebastian Serth
parent 02e50e9921
commit 5f99e7ee54
3 changed files with 11 additions and 1 deletions

View File

@ -0,0 +1,7 @@
# frozen_string_literal: true
class AddSessionIdToEventsSynrhonizedEditor < ActiveRecord::Migration[7.0]
def change
add_column :events_synchronized_editor, :session_id, :uuid, null: true
end
end