10 lines
201 B
MySQL
Raw Normal View History

2021-04-04 18:08:07 +02:00
drop table if exists customer;
CREATE TABLE customer
(
id integer NOT NULL,
fullname character varying(255),
email character varying(255),
CONSTRAINT customer_pkey PRIMARY KEY (id)
);