Custom Drupal Module not creating any tables
- by Anthony
Anything specific I need in the module file?
Install File
function module_install() {
//lets create the school database
$create_table_sql = "CREATE TABLE IF NOT EXISTS `table1` (
id int(11) NOT NULL,
principal_name varchar(300) NOT NULL,
school_name varchar(300) NOT NULL,
address1 varchar(300) NOT NULL,
address2 varchar(300) NOT NULL,
…