1 | <?php |
||
20 | abstract class IntegrationConnectionNameColumn extends Migration |
||
21 | { |
||
22 | /** |
||
23 | * @return string |
||
24 | */ |
||
25 | abstract protected static function tableName(): string; |
||
26 | |||
27 | /** |
||
28 | * @inheritdoc |
||
29 | * @throws \yii\base\NotSupportedException |
||
30 | * @throws \yii\db\Exception |
||
31 | */ |
||
32 | public function safeUp() |
||
63 | } |
||
64 |