From 7fe8da5bab5b644f192bee79d1e4d0379ce2ca23 Mon Sep 17 00:00:00 2001 From: dangj501 Date: Wed, 6 Mar 2024 23:03:51 -0600 Subject: [PATCH] Base --- Base/cocina.sql | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Base/cocina.sql diff --git a/Base/cocina.sql b/Base/cocina.sql new file mode 100644 index 0000000..3d7ecef --- /dev/null +++ b/Base/cocina.sql @@ -0,0 +1,22 @@ +create database cocina; + +use cocina; + +drop table usuarios; +create table usuarios( +nombreUsuario varchar(100) primary key, +password varchar(100), +tipo varchar(100) +); + +drop table asiento; +create table asiento( + id integer auto_increment primary key, + Precio integer + +); + +drop table zona; +create table zona( + id integer auto_increment primary key +); \ No newline at end of file