source: branches/version-2/html/install/sql/add/dtb_session_pgsql.sql @ 18007

Revision 18007, 216 bytes checked in by kajiwara, 15 years ago (diff)

2.4.0 正式版のコミット。コミット内容の詳細はこちら(http://svn.ec-cube.net/open_trac/query?status=closed&milestone=EC-CUBE2.4.0

  • Property svn:mime-type set to application/x-httpd-php; charset=UTF-8
Line 
1CREATE TABLE dtb_session (
2    sess_id text NOT NULL,
3    sess_data text,
4    create_date timestamp NOT NULL,
5    update_date timestamp NOT NULL
6);
7CREATE INDEX dtb_session_sess_id_key ON dtb_session (sess_id);
Note: See TracBrowser for help on using the repository browser.