Guest User

Untitled

a guest
May 25th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. CREATE TABLE `user_profiles` (
  2. `id` int(11) NOT NULL AUTO_INCREMENT,
  3. `id_user` int(11) DEFAULT NULL,
  4. `fn` varchar(100) DEFAULT NULL,
  5. `nickname` varchar(100) DEFAULT NULL,
  6. `street-address` int(11) DEFAULT NULL,
  7. `locality` int(11) DEFAULT NULL,
  8. `region` int(11) DEFAULT NULL,
  9. `postal-code` int(11) DEFAULT NULL,
  10. `country-name` int(11) DEFAULT NULL,
  11. `tel` int(11) DEFAULT NULL,
  12. `email` int(11) DEFAULT NULL,
  13. `fax` int(11) DEFAULT NULL,
  14. PRIMARY KEY (`id`)
  15. ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
Add Comment
Please, Sign In to add comment