public function up(Schema $schema) : void
{
// this up() migration is auto-generated, please modify it to your needs
$table = $schema->createTable('albums');
$table->addColumn('id', 'integer', ['autoincrement'=>true]);
$table->addColumn('artist', 'text', ['notnull'=>true]);
$table->addColumn('title', 'text', ['notnull'=>true]);
$table->setPrimaryKey(['id']);
$table->addOption('engine' , 'InnoDB');
}
как проводятся миграции данных ( вставки/обновлении значении в таблицу)