sessions.sql 447 B

12345678910111213141516
  1. # $Id$
  2. #
  3. # Copyright 2005-2012, Cake Software Foundation, Inc.
  4. # 1785 E. Sahara Avenue, Suite 490-204
  5. # Las Vegas, Nevada 89104
  6. #
  7. # Licensed under The MIT License
  8. # Redistributions of files must retain the above copyright notice.
  9. # MIT License (http://www.opensource.org/licenses/mit-license.php)
  10. CREATE TABLE cake_sessions (
  11. id varchar(255) NOT NULL default '',
  12. data text,
  13. expires int(11) default NULL,
  14. PRIMARY KEY (id)
  15. );