OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/db/migrate/20110108230721_create_meeti...

17 lines
396 B

class CreateMeetingParticipants < ActiveRecord::Migration
def self.up
create_table :meeting_participants do |t|
t.column :user_id, :integer
t.column :meeting_id, :integer
t.column :meeting_role_id, :integer
t.column :email, :string
t.column :name, :string
t.timestamps
end
end
def self.down
drop_table :meeting_participants
end
end