chore(markdown): Adding main README and docs/software_requirements_specification.md

This commit is contained in:
Josepablo Cruz
2026-04-07 08:19:52 -06:00
parent ebb8196be9
commit 6938df70e4
10 changed files with 2089 additions and 4777 deletions

View File

@@ -1,5 +1,5 @@
-- MySQL Script generated by MySQL Workbench
-- Thu 02 Apr 2026 01:32:42 AM CST
-- Mon 06 Apr 2026 02:56:46 PM CST
-- Model: New Model Version: 1.0
-- MySQL Workbench Forward Engineering
@@ -193,6 +193,7 @@ ENGINE = InnoDB;
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `u947463964_etaviaporte`.`sessions` (
`id` INT UNSIGNED NOT NULL AUTO_INCREMENT,
`application_id` INT UNSIGNED NOT NULL,
`user_id` INT UNSIGNED NOT NULL,
`session_token_hash` VARCHAR(255) NOT NULL,
`created_at` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
@@ -202,10 +203,16 @@ CREATE TABLE IF NOT EXISTS `u947463964_etaviaporte`.`sessions` (
PRIMARY KEY (`id`),
INDEX `fk_sessions_users1_idx` (`user_id` ASC) VISIBLE,
UNIQUE INDEX `session_token_hash_UNIQUE` (`session_token_hash` ASC) VISIBLE,
INDEX `fk_sessions_applications1_idx` (`application_id` ASC) VISIBLE,
CONSTRAINT `fk_sessions_users1`
FOREIGN KEY (`user_id`)
REFERENCES `u947463964_etaviaporte`.`users` (`id`)
ON DELETE CASCADE
ON UPDATE NO ACTION,
CONSTRAINT `fk_sessions_applications1`
FOREIGN KEY (`application_id`)
REFERENCES `u947463964_etaviaporte`.`applications` (`id`)
ON DELETE CASCADE
ON UPDATE NO ACTION)
ENGINE = InnoDB;