yiisoft / db

Yii Database Library
https://www.yiiframework.com/
BSD 3-Clause "New" or "Revised" License
134 stars 35 forks source link

Add `hasTable()` shortcut #849

Closed arogachev closed 6 months ago

arogachev commented 6 months ago

Before:

$db->getSchema()->getTableSchema('user') !== null;

After:

$db->hasTable('user');
arogachev commented 6 months ago

Duplicate of #762.