Schema.sql script missing DB table creation...
Status: Beta
Brought to you by:
ferguson
During installation, there is a call in webuser.sql to
insert data into a table called "db":
insert into db
(host,db,user,select_priv,insert_priv,update_priv,delete_priv,create_priv,drop_priv,alter_priv)
values
('localhost','otto','otto','y','y','y','y','y','y','y');
but the DB table is not present/created in schema.sql.
I can manually create the table, but this was a hassle
because all the other tables get created there anyway.
Thanks! -Scott Ottesen
Logged In: YES
user_id=607626
The 'db' table is a MySQL priveledge table. You should not
have to create it.