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

20
sql/cr_prod_users_tbl.sql Normal file
View File

@ -0,0 +1,20 @@
# drop the "prod_user" table if it exists, then recreate it
DROP TABLE IF EXISTS prod_user;
CREATE TABLE prod_user
(
# /********************\
#|* Datos B<>sicos *|
# \********************/
user SMALLINT UNSIGNED NOT NULL REFERENCES users,
prod SMALLINT UNSIGNED NOT NULL REFERENCES prod,
stock SMALLINT
PRIMARY KEY (user, prod)
);
# Cargamos otros datos suministrados por defecto...
# LOAD DATA LOCAL INFILE "pelis_user.txt" INTO TABLE personas;