Working on the backend interface for supporter registrations

This commit is contained in:
Matt Barringer 2013-02-03 18:12:44 +01:00
parent e0f134bb34
commit 152e8a345d
66 changed files with 12860 additions and 17 deletions

View file

@ -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

View file

@ -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