Working on the backend interface for supporter registrations
This commit is contained in:
parent
e0f134bb34
commit
152e8a345d
66 changed files with 12860 additions and 17 deletions
|
|
@ -3,6 +3,8 @@ class CreateTableSupporterRegistrations < ActiveRecord::Migration
|
|||
create_table :supporter_registrations do |t|
|
||||
t.references :registration
|
||||
t.references :supporter_level
|
||||
t.references :conference
|
||||
t.string :name
|
||||
t.string :email
|
||||
t.string :code
|
||||
t.boolean :code_is_valid, :default => false
|
||||
|
|
|
|||
|
|
@ -206,6 +206,8 @@ ActiveRecord::Schema.define(:version => 20130202131932) do
|
|||
create_table "supporter_registrations", :force => true do |t|
|
||||
t.integer "registration_id"
|
||||
t.integer "supporter_level_id"
|
||||
t.integer "conference_id"
|
||||
t.string "name"
|
||||
t.string "email"
|
||||
t.string "code"
|
||||
t.boolean "code_is_valid", :default => false
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue