diff options
author | prashantsinalkar | 2018-10-30 11:07:27 +0530 |
---|---|---|
committer | prashantsinalkar | 2018-10-30 11:07:27 +0530 |
commit | 53aada18a710572ad8215efcb81be9dadf554355 (patch) | |
tree | 5f120ebe859d8d27a1fd979def9f9fdf4786978b | |
parent | 2b7e9a8174e1b6ff061520db1c09c31e18793613 (diff) | |
download | osdag_workshop_booking-53aada18a710572ad8215efcb81be9dadf554355.tar.gz osdag_workshop_booking-53aada18a710572ad8215efcb81be9dadf554355.tar.bz2 osdag_workshop_booking-53aada18a710572ad8215efcb81be9dadf554355.zip |
added schema for list of states
-rw-r--r-- | osdag_workshop_booking.install | 18 |
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!', |