Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --
- -- Table structure for table `Item`
- --
- CREATE TABLE IF NOT EXISTS `Item` (
- `id` INT(11) NOT NULL AUTO_INCREMENT,
- `Something` VARCHAR(10) NOT NULL,
- PRIMARY KEY (`id`)
- );
- --
- -- Table structure for table `OwnedItem`
- --
- CREATE TABLE IF NOT EXISTS `OwnedItem` (
- `id` INT(11) NOT NULL AUTO_INCREMENT,
- `Item` INT(11) NOT NULL,
- `Owner` VARCHAR(10) NOT NULL,
- `isWorking` tinyint(1) NOT NULL,
- PRIMARY KEY (`id`)
- );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement