D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
www
/
html
/
epaji.com
/
public_html
/
hindiusa
/
vendor
/
yiisoft
/
yii2
/
web
/
migrations
/
Filename :
schema-pgsql.sql
back
Copy
/** * Database schema required by \yii\web\DbSession. * * @author Qiang Xue <qiang.xue@gmail.com> * @author Misbahul D Munir <misbahuldmunir@gmail.com> * @link http://www.yiiframework.com/ * @copyright 2008 Yii Software LLC * @license http://www.yiiframework.com/license/ * @since 2.0.8 */ drop table if exists "session"; create table "session" ( "id" varchar(256) not null, "expire" integer, "data" bytea, primary key ("id") );