Adding more registration options, and starting work on supporter levels
This commit is contained in:
parent
61a02d17a3
commit
973913b3bf
25 changed files with 228 additions and 20 deletions
13
db/migrate/20130202130737_create_supporter_level_table.rb
Normal file
13
db/migrate/20130202130737_create_supporter_level_table.rb
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
class CreateSupporterLevelTable < ActiveRecord::Migration
|
||||
def up
|
||||
create_table :supporter_levels do |t|
|
||||
t.references :conference
|
||||
t.string :title, :null => false
|
||||
t.string :url
|
||||
end
|
||||
end
|
||||
|
||||
def down
|
||||
drop_table :supporter_levels
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue