1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-28 09:24:24 +01:00
fab-manager/db/migrate/20191202135507_create_i_calendar_events.rb

19 lines
521 B
Ruby

# frozen_string_literal: true
# From this migration, we are able to store events from an external calendar (using the iCalendar standard format)
class CreateICalendarEvents < ActiveRecord::Migration[4.2]
def change
create_table :i_calendar_events do |t|
t.string :uid
t.datetime :dtstart
t.datetime :dtend
t.string :summary
t.string :description
t.string :attendee
t.belongs_to :i_calendar, index: true, foreign_key: true
t.timestamps null: false
end
end
end