-
Notifications
You must be signed in to change notification settings - Fork 1
/
DiseñoBaseDatosGPT.txt
76 lines (67 loc) · 2.26 KB
/
DiseñoBaseDatosGPT.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
-- Usuarios Table
CREATE TABLE Usuarios (
usuario_id INT AUTO_INCREMENT PRIMARY KEY,
nombre VARCHAR(100) NOT NULL,
correo VARCHAR(100) UNIQUE NOT NULL,
contrasena VARCHAR(100) NOT NULL
);
-- Compras Table
CREATE TABLE Compras (
compra_id INT AUTO_INCREMENT PRIMARY KEY,
usuario_id INT NOT NULL,
fecha_compra DATE NOT NULL,
estado INT NOT NULL DEFAULT 1, -- 1: Pedido Confirmado, 2: Insumos Listos, 3: Maquila en Proceso, 4: Barniz, 5: Armado, 6: En Camino, 7: Entrega
direccion_envio VARCHAR(255) NOT NULL,
FOREIGN KEY (usuario_id) REFERENCES Usuarios(usuario_id)
);
-- Productos Table
CREATE TABLE Productos (
producto_id INT AUTO_INCREMENT PRIMARY KEY,
nombre VARCHAR(100) NOT NULL,
descripcion TEXT,
precio DECIMAL(10, 2) NOT NULL,
categoria VARCHAR(100),
imagen_url VARCHAR(255)
);
-- Compra_Productos Table
CREATE TABLE Compra_Productos (
compra_producto_id INT AUTO_INCREMENT PRIMARY KEY,
compra_id INT NOT NULL,
producto_id INT NOT NULL,
cantidad INT NOT NULL,
FOREIGN KEY (compra_id) REFERENCES Compras(compra_id),
FOREIGN KEY (producto_id) REFERENCES Productos(producto_id)
);
-- Carrito Table
CREATE TABLE Carrito (
carrito_id INT AUTO_INCREMENT PRIMARY KEY,
usuario_id INT NOT NULL,
producto_id INT NOT NULL,
cantidad INT NOT NULL,
FOREIGN KEY (usuario_id) REFERENCES Usuarios(usuario_id),
FOREIGN KEY (producto_id) REFERENCES Productos(producto_id)
);
-- Roles Table
CREATE TABLE Roles (
rol_id INT AUTO_INCREMENT PRIMARY KEY,
nombre VARCHAR(100) NOT NULL
);
-- Empleados Table
CREATE TABLE Empleados (
empleado_id INT AUTO_INCREMENT PRIMARY KEY,
nombre VARCHAR(100) NOT NULL,
correo VARCHAR(100) UNIQUE NOT NULL,
contrasena VARCHAR(100) NOT NULL,
rol_id INT NOT NULL,
FOREIGN KEY (rol_id) REFERENCES Roles(rol_id)
);
-- Add default roles
INSERT INTO Roles (nombre)
VALUES ('Carpintero'), ('Diseñador'), ('Admin');
-- Example to add a new employee
INSERT INTO Empleados (nombre, correo, contrasena, rol_id)
VALUES ('Carlos Martinez', '[email protected]', 'password123', 1); -- Assigning the role of Carpintero
-- Query to retrieve employees and their roles
SELECT e.nombre, r.nombre AS rol
FROM Empleados e
JOIN Roles r ON e.rol_id = r.rol_id;