Advertisement
Sdelkadrom

Untitled

Jan 20th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. Было:
  2. `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  3. `description` varchar(255) DEFAULT NULL DEFAULT '',
  4. `action` enum('create', 'update', 'delete') DEFAULT NULL,
  5. `model_name` varchar(45) DEFAULT NULL,
  6. `model_id` int(11) unsigned DEFAULT NULL,
  7. `field` varchar(155) DEFAULT NULL,
  8. `date_created` timestamp NULL,
  9. `user_id` int(11) DEFAULT NULL,
  10.  
  11. стало:
  12. `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT,
  13. `description` varchar(255) NOT NULL DEFAULT '',
  14. `action` enum('create', 'update', 'delete') DEFAULT NULL,
  15. `model_name` varchar(45) NOT NULL DEFAULT '',
  16. `model_id` int(11) unsigned NOT NULL DEFAULT '0',
  17. `field` varchar(155) NOT NULL DEFAULT '',
  18. `date_created` timestamp NULL,
  19. `user_id` int(11) unsigned NOT NULL DEFAULT '0',
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement