Guest User

Untitled

a guest
Jan 16th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. `last_login` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
  2.  
  3. `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00'
  4.  
  5. unsigned/true : to generate "UNSIGNED" in the field definition.
  6. default/value : to generate a default value in the field definition.
  7. null/true : to generate "NULL" in the field definition. Without this, the field will > default to "NOT NULL".
  8. auto_increment/true : generates an auto_increment flag on the field. Note that the > field type must be a type that supports this,
  9. such as integer
Add Comment
Please, Sign In to add comment