D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
www
/
html
/
epaji.com
/
public_html
/
hindiusa
/
vendor
/
yiisoft
/
yii2
/
caching
/
migrations
/
Filename :
schema-oci.sql
back
Copy
/** * Database schema required by \yii\caching\DbCache. * * @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.7 */ drop table if exists "cache"; create table "cache" ( "id" varchar(128) not null, "expire" integer, "data" BYTEA, primary key ("id") );