From 53aada18a710572ad8215efcb81be9dadf554355 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 30 Oct 2018 11:07:27 +0530 Subject: added schema for list of states --- osdag_workshop_booking.install | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) 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!', -- cgit