drop database if exists goodwill; create database if not exists goodwill; grant all privileges on goodwill.* to "goodwill"@"localhost" identified by "goodwill"; grant all privileges on goodwill.* to "goodwill" identified by "goodwill"; use goodwill; create table quote ( id integer NOT NULL PRIMARY KEY, name varchar(255), phone varchar(255), amount float, payment float, rate float );