Skip to content

Instantly share code, notes, and snippets.

@solanoize
Created May 16, 2025 14:00
Show Gist options
  • Save solanoize/2ea39fdb873b39805a426d5bd3beb4ab to your computer and use it in GitHub Desktop.
Save solanoize/2ea39fdb873b39805a426d5bd3beb4ab to your computer and use it in GitHub Desktop.
CREATE TABLE `sales_db`.`owner` (
`id` INT NOT NULL AUTO_INCREMENT ,
`username` VARCHAR(40) NOT NULL ,
`password` VARCHAR(200) NOT NULL ,
`fisrtName` VARCHAR(40) NOT NULL ,
`lastName` VARCHAR(40) NOT NULL ,
PRIMARY KEY (`id`),
UNIQUE (`username`)) ENGINE = InnoDB;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment