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

28
sql/cr_foro_tbl.sql Normal file
View File

@ -0,0 +1,28 @@
# drop the "foro" table if it exists, then recreate it
DROP TABLE IF EXISTS foro;
CREATE TABLE foro
(
# /********************\
#|* Datos B<>sicos *|
# \********************/
id SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT,
post_ant SMALLINT,
owner SMALLINT,
Apodo VARCHAR(15),
fecha DATE,
hora TIME,
Asunto VARCHAR(40),
Comentario TEXT,
# /************************\
#|* CLAVES PK, SK *|
# \************************/
PRIMARY KEY (id)
);
# Cargamos otros datos suministrados por defecto...
# LOAD DATA LOCAL INFILE "foro.txt" INTO TABLE personas;