println("Creating the customers table") sql("create table if not exists customers(id serial primary key, first_name varchar(50), last_name varchar(50))") sql("insert into customers (first_name,last_name) values ('first', 'last')")