22 lines
349 B
MySQL
22 lines
349 B
MySQL
|
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
|
||
|
);
|