From 6247cc0a577f1073cdfd039cf0214004081305ce Mon Sep 17 00:00:00 2001 From: Daniel Seifert Date: Mon, 18 Mar 2024 11:45:27 +0100 Subject: [PATCH] initial --- composer.json | 36 ++++++++++++++++++++++++++++++++++++ migration/migrations.yml | 4 ++++ 2 files changed, 40 insertions(+) create mode 100644 composer.json create mode 100644 migration/migrations.yml diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..2d3d138 --- /dev/null +++ b/composer.json @@ -0,0 +1,36 @@ +{ + "name": "d3/decode_migrations", + "description": "Doctrine migration tasks for decoding database columns to be compatible with mySQL 8", + "type": "library", + "keywords": [ + "oxid", + "modules", + "eShop", + "d3", + "database", + "doctrine", + "mysql", + "dev" + ], + "authors": [ + { + "name": "D3 Data Development (Inh. Thomas Dartsch)", + "email": "info@shopmodule.com", + "homepage": "https://www.d3data.de", + "role": "Owner" + } + ], + "support": { + "email": "support@shopmodule.com" + }, + "homepage": "https://www.oxidmodule.com/", + "require": { + "oxid-esales/oxideshop-ce": "*" + }, + "license": "MIT", + "autoload": { + "psr-4": { + "D3\\DecodeMigrations\\": "." + } + } +} \ No newline at end of file diff --git a/migration/migrations.yml b/migration/migrations.yml new file mode 100644 index 0000000..646de26 --- /dev/null +++ b/migration/migrations.yml @@ -0,0 +1,4 @@ +name: D3 Decode Migrations +migrations_namespace: D3\DecodeMigrations +table_name: d3decode_migrations +migrations_directory: data \ No newline at end of file