3 lines
No EOL
230 B
Text
3 lines
No EOL
230 B
Text
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')") |