This commit is contained in:
dangj501 2024-03-06 23:03:51 -06:00
parent daf177f3d4
commit 7fe8da5bab
1 changed files with 22 additions and 0 deletions

22
Base/cocina.sql Normal file
View File

@ -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
);