0
Yii2でyii migrate/create
コマンドを使用してマイグレーションを作成することはできますか?例えばYii2 {{%table}}オプションを使用してマイグレーション/作成する
:
public function up()
{
$this->createTable('{{%settings}}', [
'id' => $this->primaryKey(),
'keyname' => $this->string()->unique(),
'description' => $this->text(),
'value' => $this->string(),
'type' => $this->string()
]);
}
私は上記の例のような結果を取得したいのですが、yii migrate/create
コマンドが作成されます{{%...}}
それは動作します。 –
'{{%...}} 'の目的が分かりますか?ありがとうございました – Blackjack
@Blackjack https://stackoverflow.com/questions/38698129/yii2-migrations-percentage-sign-and-brackets-in-table-name – Bizley