osem-fcy/db/migrate/20190810082925_create_invites.rb
Rahul 654760c3fc initialize invites
Invites model,controller and views are initialized.

add datepicker and selectize in invites#new

calender is added for end date field and selectize is added for emails field to allow multiple emails in field
2019-10-24 23:26:37 +05:30

12 lines
239 B
Ruby

class CreateInvites < ActiveRecord::Migration[5.2]
def change
create_table :invites do |t|
t.integer :conference_id
t.integer :user_id
t.date :end_date
t.text :invite_for
t.timestamps
end
end
end