sessions.sql 444 B

1234567891011121314
  1. # Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
  2. #
  3. # Licensed under The MIT License
  4. # For full copyright and license information, please see the LICENSE.txt
  5. # Redistributions of files must retain the above copyright notice.
  6. # MIT License (http://www.opensource.org/licenses/mit-license.php)
  7. CREATE TABLE sessions (
  8. id varchar(40) NOT NULL default '',
  9. data text,
  10. expires INT(11) NOT NULL,
  11. PRIMARY KEY (id)
  12. );