. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Schema; use Fisharebest\Webtrees\Database; use Illuminate\Database\Query\Builder; use PDOException; use Illuminate\Database\Capsule\Manager as DB; use Illuminate\Database\Schema\Blueprint; /** * Upgrade the database schema from version 37 to version 38. */ class Migration37 implements MigrationInterface { /** * Upgrade to to the next version * * @return void */ public function upgrade(): void { // These tables were created by webtrees 1.x, and may not exist if we first installed webtrees 2.x DB::schema()->dropIfExists('site_access_rule'); DB::schema()->dropIfExists('next_id'); // Split the media table into media/media_file so that we can store multiple media // files in each media object. DB::schema()->create('media_file', function (Blueprint $table): void { $table->integer('id', true); $table->string('m_id', 20); $table->integer('m_file'); $table->string('multimedia_file_refn', 512); // GEDCOM only allows 30 characters $table->string('multimedia_format', 4); $table->string('source_media_type', 15); $table->string('descriptive_title', 248); $table->index(['m_id', 'm_file']); $table->index(['m_file', 'm_id']); $table->index(['m_file', 'multimedia_file_refn']); $table->index(['m_file', 'multimedia_format']); $table->index(['m_file', 'source_media_type']); $table->index(['m_file', 'descriptive_title']); // Need to set row format so that we can index fields longer than 255 characters. $table->engine = 'InnoDB ROW_FORMAT=COMPRESSED'; }); if (DB::schema()->hasColumn('media', 'm_filename')) { $builder = new Builder(DB::connection()); $builder->from('media_file')->insertUsing([ 'm_id', 'm_file', 'multimedia_file_refn', 'multimedia_format', 'source_media_type', 'descriptive_title', ], function (Builder $query) { $query->select([ 'm_id', 'm_file', 'm_filename', 'm_ext', 'm_type', //DB::raw('LEFT(m_type, 15)'), 'm_titl', ])->from('media'); }); // SQLite can only drop one column at a time. DB::schema()->table('media', function (Blueprint $table): void { $table->dropColumn('m_filename'); }); DB::schema()->table('media', function (Blueprint $table): void { $table->dropColumn('m_ext'); }); DB::schema()->table('media', function (Blueprint $table): void { $table->dropColumn('m_type'); }); DB::schema()->table('media', function (Blueprint $table): void { $table->dropColumn('m_titl'); }); } } }