Changes between Initial Version and Version 1 of Ticket #24132
- Timestamp:
- Jan 11, 2015, 4:52:32 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #24132 – Description
initial v1 1 {{{ 1 2 CREATE TABLE `auth_permission` ( 2 3 `id` int(11) NOT NULL AUTO_INCREMENT, … … 5 6 `codename` varchar(100) NOT NULL, 6 7 ) 8 }}} 9 7 10 8 11 codename and name are almost identical fields, except name has added spaces and the string "Can" stuck in front of it. Why then is the codename field varchar(100) and the name field varchar(50).