First commit 08/03/2002

This commit is contained in:
2021-09-12 22:52:08 +02:00
commit ffeed9f33d
46 changed files with 1451 additions and 0 deletions

25
sql/cr_prod_tbl.sql Normal file
View File

@ -0,0 +1,25 @@
# drop the "prod" table if it exists, then recreate it
DROP TABLE IF EXISTS prod;
CREATE TABLE prod
(
# /********************\
#|* Datos B<>sicos *|
# \********************/
id SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT,
familia SMALLINT,
desc VARCHAR(30),
Imagen BLOB,
filetype VARCHAR(50)
# /************************\
#|* CLAVES PK, SK *|
# \************************/
PRIMARY KEY (id),
);
# Cargamos otros datos suministrados por defecto...
# LOAD DATA LOCAL INFILE "pelis.txt" INTO TABLE personas;