nperez0111 / Pizza

Pizza Web App Point of Sale and API
1 stars 0 forks source link

Create & Drop Tables #54

Open nperez0111 opened 8 years ago

nperez0111 commented 8 years ago

This would allow an endpoint to create and drop certain tables

CREATE TABLE Persons
(
PersonID int,
LastName varchar(255),
FirstName varchar(255),
Address varchar(255),
City varchar(255)
);

DELETE

DROP TABLE table_name