summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--osdag_workshop_booking.install18
1 files changed, 18 insertions, 0 deletions
diff --git a/osdag_workshop_booking.install b/osdag_workshop_booking.install
index 049a9d8..7827f15 100644
--- a/osdag_workshop_booking.install
+++ b/osdag_workshop_booking.install
@@ -12,6 +12,24 @@ function osdag_workshop_booking_install()
*/
function osdag_workshop_booking_schema()
{
+$schema['list_states_of_india'] = array(
+ 'description' => 'TODO: please describe this table!',
+ 'fields' => array(
+ 'id' => array(
+ 'description' => 'TODO: please describe this field!',
+ 'type' => 'serial',
+ 'not null' => TRUE,
+ ),
+ 'state' => array(
+ 'description' => 'TODO: please describe this field!',
+ 'type' => 'varchar',
+ 'length' => '100',
+ 'not null' => TRUE,
+ 'default' => 'None',
+ ),
+ ),
+ 'primary key' => array('id'),
+);
/* proposal */
$schema['osdag_workshop_booking_proposal'] = array(
'description' => 'TODO: please describe this table!',