本文整理汇总了PHP中Schema::tableExists方法的典型用法代码示例。如果您正苦于以下问题:PHP Schema::tableExists方法的具体用法?PHP Schema::tableExists怎么用?PHP Schema::tableExists使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Schema
的用法示例。
在下文中一共展示了Schema::tableExists方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
public function __construct()
{
//创建migration表用于记录动作
if (!Schema::tableExists('migrations')) {
$sql = "CREATE TABLE " . c('database.prefix') . 'migrations(migration varchar(255) not null,batch int)CHARSET UTF8';
Db::execute($sql);
}
if (empty(self::$batch)) {
self::$batch = Db::table('migrations')->max('batch') ?: 0;
}
}
示例2: cache
public function cache()
{
$table = c('database.prefix') . c('cache.mysql.table');
if (Schema::tableExists(c('cache.mysql.table'))) {
$this->error('Table already exists');
}
$sql = <<<sql
CREATE TABLE `{$table}` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`name` char(20) DEFAULT NULL,
`data` mediumtext,
`create_at` int(10),
`expire` int(10),
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
sql;
Schema::sql($sql);
}