Volunteers, positions and days and volunteers list for admin, volunteering option for attendees
This commit is contained in:
parent
125d5fe3ff
commit
64b2b8b3f8
31 changed files with 335 additions and 79 deletions
15
db/migrate/20130821133850_create_vdays.rb
Normal file
15
db/migrate/20130821133850_create_vdays.rb
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
class CreateVdays < ActiveRecord::Migration
|
||||
def up
|
||||
create_table :vdays do |t|
|
||||
t.references :conference
|
||||
t.date :day
|
||||
t.text :description
|
||||
|
||||
t.timestamps
|
||||
end
|
||||
end
|
||||
|
||||
def down
|
||||
drop_table :vdays
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue