hasTable('talk_guests')) { * $table = $schema->createTable('talk_guests'); * * $table->addColumn('session_hash', Type::STRING, [ * 'notnull' => false, * 'length' => 64, * ]); * $table->addColumn('display_name', Type::STRING, [ * 'notnull' => false, * 'length' => 64, * 'default' => '', * ]); * * $table->addUniqueIndex(['session_hash'], 'tg_session_hash'); * } * * return $schema; */ return null; } }