GitList
Repositories
Help
Report an Issue
vroom360
Code
Commits
Branches
Tags
Search
Tree:
e36c40f
Branches
Tags
master
vroom360
DbTables.php
initial commit
Dev Ghai
commited
e36c40f
at 2013-09-26 06:24:15
DbTables.php
Blame
History
Raw
<?php /* * To change this template, choose Tools | Templates * and open the template in the editor. */ /** * Description of DbTables * * @author dghai */ class Users { public $loginId; public $ageId; public $gender; public $height; public $shoesize; public $weightId; public $zip; public $shirtsize; public $email; public $sittingHeight; public $upperLegLength; public $badges; public $surveys; } class Questions { public $id; public $text; public $valueType; //integer for emoticons and decimal for slider public $answerDirection; //enum: HigherIsBetter, LowerIsBetter public $x; public $y; public $z; public $isActive; //this will be 1 for the questions as inactive questions will never be sent back. } class Ages { public $age_id; public $age_from; public $age_to; } class Weights { public $weight_id; public $weight_from; public $weight_to; } class Vehicle { public $vehicle_id; public $vehicle_model; } class Survey { public $survey_id; public $survey_name; public $survey_quesAnswered; public $survey_quesCount; public $survey_question_set_id; //Mr. IPad, use it to pull questions public $survey_vehicle_make; public $survey_vehicle_model; public $survey_vehicle_year; } class Answer { public $answer_id; public $answer_ques_text; public $answer_value; public $answer_comment; public $answer_image; } class Admin { public $isAdmin; } ?>