Base
This commit is contained in:
parent
daf177f3d4
commit
7fe8da5bab
|
@ -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
|
||||||
|
);
|
Loading…
Reference in New Issue