10 lines
177 B
Ruby
10 lines
177 B
Ruby
|
|
class CreateZoomMeetings < ActiveRecord::Migration[6.0]
|
||
|
|
def change
|
||
|
|
create_table :zoom_meetings do |t|
|
||
|
|
t.string :api_meeting_id
|
||
|
|
|
||
|
|
t.timestamps
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|