Advertisement
Guest User

Untitled

a guest
Feb 12th, 2016
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. --
  2. -- Struktura tabeli dla tabeli `samp_property`
  3. --
  4.  
  5. CREATE TABLE IF NOT EXISTS `samp_property` (
  6. `id` int(11) NOT NULL AUTO_INCREMENT,
  7. `owner` varchar(24) NOT NULL DEFAULT '@NULL',
  8. `name` varchar(24) NOT NULL DEFAULT '@NULL',
  9. `posx` float NOT NULL DEFAULT '0',
  10. `posy` float NOT NULL DEFAULT '0',
  11. `posz` float NOT NULL DEFAULT '0',
  12. `price` int(11) NOT NULL DEFAULT '0',
  13. `receive` int(11) NOT NULL DEFAULT '0',
  14. `icon` int(3) NOT NULL DEFAULT '2',
  15. PRIMARY KEY (`id`),
  16. UNIQUE KEY `id` (`id`)
  17. ) ENGINE=MyISAM DEFAULT CHARSET=latin2 AUTO_INCREMENT=152 ;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement