Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 35cda6e91c | |||
| ba00e7ecf6 | |||
| e3a1be1844 | |||
| fd279b6c8b | |||
| 73b5907539 | |||
| edeef544d4 | |||
| 1964ad99b6 | |||
| 078b2e6051 | |||
| a57e23dec3 | |||
| a8c4a2ebe1 |
@@ -150,6 +150,22 @@
|
|||||||
<span class="text-muted"> — {{translate 'skipDuplicatesHint' category='messages' scope='DataMigration'}}</span>
|
<span class="text-muted"> — {{translate 'skipDuplicatesHint' category='messages' scope='DataMigration'}}</span>
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="checkbox">
|
||||||
|
<label>
|
||||||
|
<input type="checkbox" name="importNoFiles">
|
||||||
|
{{translate 'Skip attachment files' scope='DataMigration'}}
|
||||||
|
<span class="text-muted"> — {{translate 'importNoFilesHint' category='messages' scope='DataMigration'}}</span>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="checkbox">
|
||||||
|
<label>
|
||||||
|
<input type="checkbox" name="createSnapshot" checked>
|
||||||
|
{{translate 'Create snapshot before import' scope='DataMigration'}}
|
||||||
|
<span class="text-muted"> — {{translate 'snapshotHint' category='messages' scope='DataMigration'}}</span>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="btn-group">
|
<div class="btn-group">
|
||||||
|
|||||||
@@ -301,6 +301,8 @@ define('modules/data-migration/views/admin/data-migration', ['view'], function (
|
|||||||
|
|
||||||
const preserveIds = this.$el.find('input[name="preserveIds"]').is(':checked');
|
const preserveIds = this.$el.find('input[name="preserveIds"]').is(':checked');
|
||||||
const skipDuplicates = this.$el.find('input[name="skipDuplicates"]').is(':checked');
|
const skipDuplicates = this.$el.find('input[name="skipDuplicates"]').is(':checked');
|
||||||
|
const noFiles = this.$el.find('input[name="importNoFiles"]').is(':checked');
|
||||||
|
const createSnapshot = !dryRun && this.$el.find('input[name="createSnapshot"]').is(':checked');
|
||||||
|
|
||||||
const confirmMsg = dryRun
|
const confirmMsg = dryRun
|
||||||
? this.translate('dryRunConfirmation', 'messages', 'DataMigration')
|
? this.translate('dryRunConfirmation', 'messages', 'DataMigration')
|
||||||
@@ -312,9 +314,11 @@ define('modules/data-migration/views/admin/data-migration', ['view'], function (
|
|||||||
.addClass('disabled').attr('disabled', true);
|
.addClass('disabled').attr('disabled', true);
|
||||||
this.$el.find('.import-progress').show();
|
this.$el.find('.import-progress').show();
|
||||||
|
|
||||||
|
const runImport = () => {
|
||||||
Espo.Ajax.postRequest('DataMigration/action/import', {
|
Espo.Ajax.postRequest('DataMigration/action/import', {
|
||||||
backupName: this.selectedBackup,
|
backupName: this.selectedBackup,
|
||||||
preserveIds: preserveIds,
|
preserveIds: preserveIds,
|
||||||
|
noFiles: noFiles,
|
||||||
skipDuplicates: skipDuplicates,
|
skipDuplicates: skipDuplicates,
|
||||||
dryRun: dryRun,
|
dryRun: dryRun,
|
||||||
}, {timeout: 600000})
|
}, {timeout: 600000})
|
||||||
@@ -342,6 +346,40 @@ define('modules/data-migration/views/admin/data-migration', ['view'], function (
|
|||||||
this.$el.find('.import-progress').hide();
|
this.$el.find('.import-progress').hide();
|
||||||
Espo.Ui.error(this.translate('Import failed', 'labels', 'DataMigration'));
|
Espo.Ui.error(this.translate('Import failed', 'labels', 'DataMigration'));
|
||||||
});
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
if (createSnapshot) {
|
||||||
|
Espo.Ui.notify(this.translate('Creating snapshot...', 'labels', 'DataMigration'));
|
||||||
|
|
||||||
|
Espo.Ajax.postRequest('DataMigration/action/snapshot', {}, {timeout: 300000})
|
||||||
|
.then(response => {
|
||||||
|
if (response.success) {
|
||||||
|
Espo.Ui.success(
|
||||||
|
this.translate('Snapshot created', 'labels', 'DataMigration') +
|
||||||
|
': ' + response.snapshotName + ' (' + response.dumpSizeFormatted + ')'
|
||||||
|
);
|
||||||
|
runImport();
|
||||||
|
} else {
|
||||||
|
this.isImporting = false;
|
||||||
|
this.$el.find('[data-action="import"], [data-action="dryRunImport"]')
|
||||||
|
.removeClass('disabled').attr('disabled', false);
|
||||||
|
this.$el.find('.import-progress').hide();
|
||||||
|
Espo.Ui.error(
|
||||||
|
this.translate('Snapshot failed', 'labels', 'DataMigration') +
|
||||||
|
': ' + (response.error || 'Unknown error')
|
||||||
|
);
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch(xhr => {
|
||||||
|
this.isImporting = false;
|
||||||
|
this.$el.find('[data-action="import"], [data-action="dryRunImport"]')
|
||||||
|
.removeClass('disabled').attr('disabled', false);
|
||||||
|
this.$el.find('.import-progress').hide();
|
||||||
|
Espo.Ui.error(this.translate('Snapshot failed', 'labels', 'DataMigration'));
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
runImport();
|
||||||
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|||||||
@@ -46,6 +46,7 @@ class Import implements Action
|
|||||||
$preserveIds = $body->preserveIds ?? true;
|
$preserveIds = $body->preserveIds ?? true;
|
||||||
$skipDuplicates = $body->skipDuplicates ?? true;
|
$skipDuplicates = $body->skipDuplicates ?? true;
|
||||||
$dryRun = $body->dryRun ?? false;
|
$dryRun = $body->dryRun ?? false;
|
||||||
|
$noFiles = $body->noFiles ?? false;
|
||||||
|
|
||||||
$io = new BufferedIO();
|
$io = new BufferedIO();
|
||||||
|
|
||||||
@@ -54,6 +55,7 @@ class Import implements Action
|
|||||||
'preserveIds' => $preserveIds,
|
'preserveIds' => $preserveIds,
|
||||||
'skipDuplicates' => $skipDuplicates,
|
'skipDuplicates' => $skipDuplicates,
|
||||||
'dryRun' => $dryRun,
|
'dryRun' => $dryRun,
|
||||||
|
'noFiles' => $noFiles,
|
||||||
'verbose' => true,
|
'verbose' => true,
|
||||||
], $io);
|
], $io);
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,111 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Espo\Modules\DataMigration\Api;
|
||||||
|
|
||||||
|
use Espo\Core\Api\Action;
|
||||||
|
use Espo\Core\Api\Request;
|
||||||
|
use Espo\Core\Api\Response;
|
||||||
|
use Espo\Core\Api\ResponseComposer;
|
||||||
|
use Espo\Core\Exceptions\Forbidden;
|
||||||
|
use Espo\Core\Utils\Config;
|
||||||
|
use Espo\Entities\User;
|
||||||
|
|
||||||
|
class Snapshot implements Action
|
||||||
|
{
|
||||||
|
public function __construct(
|
||||||
|
private User $user,
|
||||||
|
private Config $config
|
||||||
|
) {}
|
||||||
|
|
||||||
|
public function process(Request $request): Response
|
||||||
|
{
|
||||||
|
if (!$this->user->isAdmin()) {
|
||||||
|
throw new Forbidden();
|
||||||
|
}
|
||||||
|
|
||||||
|
$timestamp = date('Ymd-His');
|
||||||
|
$snapshotName = 'snapshot-' . $timestamp;
|
||||||
|
$snapshotDir = 'data/backups/' . $snapshotName;
|
||||||
|
|
||||||
|
mkdir($snapshotDir, 0755, true);
|
||||||
|
|
||||||
|
$dbParams = $this->config->get('database');
|
||||||
|
$host = $dbParams['host'] ?? 'localhost';
|
||||||
|
$port = $dbParams['port'] ?? '3306';
|
||||||
|
$dbName = $dbParams['dbname'] ?? '';
|
||||||
|
$user = $dbParams['user'] ?? '';
|
||||||
|
$password = $dbParams['password'] ?? '';
|
||||||
|
|
||||||
|
$dumpFile = $snapshotDir . '/database.sql';
|
||||||
|
|
||||||
|
$cmd = sprintf(
|
||||||
|
'mysqldump --host=%s --port=%s --user=%s --password=%s'
|
||||||
|
. ' --ssl=false --no-tablespaces --single-transaction --quick %s > %s 2>&1',
|
||||||
|
escapeshellarg($host),
|
||||||
|
escapeshellarg($port),
|
||||||
|
escapeshellarg($user),
|
||||||
|
escapeshellarg($password),
|
||||||
|
escapeshellarg($dbName),
|
||||||
|
escapeshellarg($dumpFile)
|
||||||
|
);
|
||||||
|
|
||||||
|
$output = [];
|
||||||
|
$returnCode = 0;
|
||||||
|
exec($cmd, $output, $returnCode);
|
||||||
|
|
||||||
|
if ($returnCode !== 0) {
|
||||||
|
// Cleanup on failure
|
||||||
|
if (file_exists($dumpFile)) {
|
||||||
|
unlink($dumpFile);
|
||||||
|
}
|
||||||
|
|
||||||
|
rmdir($snapshotDir);
|
||||||
|
|
||||||
|
return ResponseComposer::json([
|
||||||
|
'success' => false,
|
||||||
|
'error' => 'Database dump failed: ' . implode("\n", $output),
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
$dumpSize = filesize($dumpFile);
|
||||||
|
|
||||||
|
// Write a manifest
|
||||||
|
$manifest = [
|
||||||
|
'type' => 'snapshot',
|
||||||
|
'createdAt' => date('c'),
|
||||||
|
'sourceHost' => $this->config->get('siteUrl', 'unknown'),
|
||||||
|
'espoVersion' => $this->config->get('version', 'unknown'),
|
||||||
|
'database' => $dbName,
|
||||||
|
'dumpSizeBytes' => $dumpSize,
|
||||||
|
];
|
||||||
|
|
||||||
|
file_put_contents(
|
||||||
|
$snapshotDir . '/manifest.json',
|
||||||
|
json_encode($manifest, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES)
|
||||||
|
);
|
||||||
|
|
||||||
|
return ResponseComposer::json([
|
||||||
|
'success' => true,
|
||||||
|
'snapshotName' => $snapshotName,
|
||||||
|
'dumpSize' => $dumpSize,
|
||||||
|
'dumpSizeFormatted' => $this->formatBytes($dumpSize),
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
private function formatBytes(int $bytes): string
|
||||||
|
{
|
||||||
|
if ($bytes >= 1073741824) {
|
||||||
|
return round($bytes / 1073741824, 2) . ' GB';
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($bytes >= 1048576) {
|
||||||
|
return round($bytes / 1048576, 2) . ' MB';
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($bytes >= 1024) {
|
||||||
|
return round($bytes / 1024, 2) . ' KB';
|
||||||
|
}
|
||||||
|
|
||||||
|
return $bytes . ' B';
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -25,6 +25,10 @@
|
|||||||
"Exporting...": "Exporting...",
|
"Exporting...": "Exporting...",
|
||||||
"Importing...": "Importing...",
|
"Importing...": "Importing...",
|
||||||
"Log": "Log",
|
"Log": "Log",
|
||||||
|
"Create snapshot before import": "Create snapshot before import",
|
||||||
|
"Creating snapshot...": "Creating database snapshot...",
|
||||||
|
"Snapshot created": "Snapshot created",
|
||||||
|
"Snapshot failed": "Snapshot failed",
|
||||||
"records": "records",
|
"records": "records",
|
||||||
"files": "files",
|
"files": "files",
|
||||||
"optional": "optional",
|
"optional": "optional",
|
||||||
@@ -42,6 +46,8 @@
|
|||||||
"deleteBackupConfirmation": "Are you sure you want to delete this backup? This action cannot be undone.",
|
"deleteBackupConfirmation": "Are you sure you want to delete this backup? This action cannot be undone.",
|
||||||
"noFilesHint": "faster export, without attachment files",
|
"noFilesHint": "faster export, without attachment files",
|
||||||
"preserveIdsHint": "keep original record IDs (recommended for same-instance restore)",
|
"preserveIdsHint": "keep original record IDs (recommended for same-instance restore)",
|
||||||
|
"importNoFilesHint": "import only database records, skip attachment files",
|
||||||
|
"snapshotHint": "backup the entire database before importing, so you can restore if needed",
|
||||||
"skipDuplicatesHint": "skip records that already exist in the database"
|
"skipDuplicatesHint": "skip records that already exist in the database"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -25,6 +25,10 @@
|
|||||||
"Exporting...": "מייצא...",
|
"Exporting...": "מייצא...",
|
||||||
"Importing...": "מייבא...",
|
"Importing...": "מייבא...",
|
||||||
"Log": "לוג",
|
"Log": "לוג",
|
||||||
|
"Create snapshot before import": "צור צילום מצב לפני ייבוא",
|
||||||
|
"Creating snapshot...": "יוצר צילום מצב של מסד הנתונים...",
|
||||||
|
"Snapshot created": "צילום מצב נוצר",
|
||||||
|
"Snapshot failed": "יצירת צילום מצב נכשלה",
|
||||||
"records": "רשומות",
|
"records": "רשומות",
|
||||||
"files": "קבצים",
|
"files": "קבצים",
|
||||||
"optional": "אופציונלי",
|
"optional": "אופציונלי",
|
||||||
@@ -42,6 +46,8 @@
|
|||||||
"deleteBackupConfirmation": "האם אתה בטוח שברצונך למחוק גיבוי זה? לא ניתן לבטל פעולה זו.",
|
"deleteBackupConfirmation": "האם אתה בטוח שברצונך למחוק גיבוי זה? לא ניתן לבטל פעולה זו.",
|
||||||
"noFilesHint": "ייצוא מהיר יותר, ללא קבצים מצורפים",
|
"noFilesHint": "ייצוא מהיר יותר, ללא קבצים מצורפים",
|
||||||
"preserveIdsHint": "שמור מזהי רשומות מקוריים (מומלץ לשחזור באותה מערכת)",
|
"preserveIdsHint": "שמור מזהי רשומות מקוריים (מומלץ לשחזור באותה מערכת)",
|
||||||
|
"importNoFilesHint": "ייבוא רשומות בלבד, ללא קבצים מצורפים",
|
||||||
|
"snapshotHint": "גיבוי מלא של מסד הנתונים לפני הייבוא, כדי שתוכל לשחזר במקרה הצורך",
|
||||||
"skipDuplicatesHint": "דלג על רשומות שכבר קיימות במסד הנתונים"
|
"skipDuplicatesHint": "דלג על רשומות שכבר קיימות במסד הנתונים"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -23,5 +23,10 @@
|
|||||||
"route": "/DataMigration/action/deleteBackup",
|
"route": "/DataMigration/action/deleteBackup",
|
||||||
"method": "post",
|
"method": "post",
|
||||||
"actionClassName": "Espo\\Modules\\DataMigration\\Api\\DeleteBackup"
|
"actionClassName": "Espo\\Modules\\DataMigration\\Api\\DeleteBackup"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"route": "/DataMigration/action/snapshot",
|
||||||
|
"method": "post",
|
||||||
|
"actionClassName": "Espo\\Modules\\DataMigration\\Api\\Snapshot"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -309,11 +309,16 @@ class EntityImporter
|
|||||||
return $newId;
|
return $newId;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** @var array<string, string[]> Cache of existing columns per table */
|
||||||
|
private array $tableColumnsCache = [];
|
||||||
|
|
||||||
|
/** @var array<string, string[]> Skipped columns log per entity type */
|
||||||
|
private array $skippedColumnsLog = [];
|
||||||
|
|
||||||
private function insertWithRawSql(string $entityType, array $record, string $newId): void
|
private function insertWithRawSql(string $entityType, array $record, string $newId): void
|
||||||
{
|
{
|
||||||
$tableName = $this->entityManager
|
$tableName = $this->camelCaseToUnderscore($entityType);
|
||||||
->getQueryComposer()
|
$existingColumns = $this->getTableColumns($tableName);
|
||||||
->toDb($entityType);
|
|
||||||
|
|
||||||
// Convert camelCase fields to snake_case for SQL
|
// Convert camelCase fields to snake_case for SQL
|
||||||
$columns = [];
|
$columns = [];
|
||||||
@@ -327,15 +332,27 @@ class EntityImporter
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Skip non-storable array/object fields that come from getValueMap
|
$column = $this->camelCaseToUnderscore($field);
|
||||||
if (is_array($value) || is_object($value)) {
|
|
||||||
|
// Skip columns that don't exist in the target table
|
||||||
|
if (!in_array($column, $existingColumns)) {
|
||||||
|
if (!isset($this->skippedColumnsLog[$entityType][$column])) {
|
||||||
|
$this->skippedColumnsLog[$entityType][$column] = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
// JSON fields should be stored as JSON strings
|
// JSON fields should be stored as JSON strings
|
||||||
if (is_array($value) || is_object($value)) {
|
if (is_array($value) || is_object($value)) {
|
||||||
$value = json_encode($value, JSON_UNESCAPED_UNICODE);
|
$value = json_encode($value, JSON_UNESCAPED_UNICODE);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Fix empty strings for integer/bool columns (MySQL strict mode)
|
||||||
|
if ($value === '' || $value === false) {
|
||||||
|
$value = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
$column = $this->camelCaseToUnderscore($field);
|
|
||||||
$columns[] = "`{$column}`";
|
$columns[] = "`{$column}`";
|
||||||
$values[] = $value;
|
$values[] = $value;
|
||||||
$placeholders[] = '?';
|
$placeholders[] = '?';
|
||||||
@@ -346,14 +363,42 @@ class EntityImporter
|
|||||||
|
|
||||||
$sql = "INSERT INTO `{$tableName}` ({$columnStr}) VALUES ({$placeholderStr})";
|
$sql = "INSERT INTO `{$tableName}` ({$columnStr}) VALUES ({$placeholderStr})";
|
||||||
|
|
||||||
try {
|
|
||||||
$pdo = $this->entityManager->getPDO();
|
$pdo = $this->entityManager->getPDO();
|
||||||
$stmt = $pdo->prepare($sql);
|
$stmt = $pdo->prepare($sql);
|
||||||
$stmt->execute($values);
|
$stmt->execute($values);
|
||||||
} catch (\Exception $e) {
|
|
||||||
// If column mismatch, try with just known columns
|
|
||||||
throw $e;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private function getTableColumns(string $tableName): array
|
||||||
|
{
|
||||||
|
if (isset($this->tableColumnsCache[$tableName])) {
|
||||||
|
return $this->tableColumnsCache[$tableName];
|
||||||
|
}
|
||||||
|
|
||||||
|
$pdo = $this->entityManager->getPDO();
|
||||||
|
$sth = $pdo->query("SHOW COLUMNS FROM `{$tableName}`");
|
||||||
|
$columns = [];
|
||||||
|
|
||||||
|
while ($row = $sth->fetch(\PDO::FETCH_ASSOC)) {
|
||||||
|
$columns[] = $row['Field'];
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->tableColumnsCache[$tableName] = $columns;
|
||||||
|
|
||||||
|
return $columns;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return array<string, string[]> entityType => [skipped column names]
|
||||||
|
*/
|
||||||
|
public function getSkippedColumns(): array
|
||||||
|
{
|
||||||
|
$result = [];
|
||||||
|
|
||||||
|
foreach ($this->skippedColumnsLog as $entityType => $columns) {
|
||||||
|
$result[$entityType] = array_keys($columns);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $result;
|
||||||
}
|
}
|
||||||
|
|
||||||
private function resetAutoIncrement(string $entityType): void
|
private function resetAutoIncrement(string $entityType): void
|
||||||
|
|||||||
@@ -62,6 +62,7 @@ class ImportService
|
|||||||
$preserveIds = $options['preserveIds'] ?? true;
|
$preserveIds = $options['preserveIds'] ?? true;
|
||||||
$skipDuplicates = $options['skipDuplicates'] ?? false;
|
$skipDuplicates = $options['skipDuplicates'] ?? false;
|
||||||
$dryRun = $options['dryRun'] ?? false;
|
$dryRun = $options['dryRun'] ?? false;
|
||||||
|
$noFiles = $options['noFiles'] ?? false;
|
||||||
$verbose = $options['verbose'] ?? false;
|
$verbose = $options['verbose'] ?? false;
|
||||||
|
|
||||||
$dataDir = rtrim($inputDir, '/') . '/data';
|
$dataDir = rtrim($inputDir, '/') . '/data';
|
||||||
@@ -138,7 +139,10 @@ class ImportService
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Restore attachment files
|
// Restore attachment files
|
||||||
if (is_dir($filesDir)) {
|
if ($noFiles) {
|
||||||
|
$io->writeLine('');
|
||||||
|
$io->writeLine('Attachment files: SKIPPED (--no-files)');
|
||||||
|
} else if (is_dir($filesDir)) {
|
||||||
$io->writeLine('');
|
$io->writeLine('');
|
||||||
$io->writeLine('Restoring attachment files...');
|
$io->writeLine('Restoring attachment files...');
|
||||||
|
|
||||||
@@ -175,6 +179,18 @@ class ImportService
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Report skipped columns (missing in target DB)
|
||||||
|
$skippedColumns = $this->entityImporter->getSkippedColumns();
|
||||||
|
|
||||||
|
if (!empty($skippedColumns)) {
|
||||||
|
$io->writeLine('');
|
||||||
|
$io->writeLine('WARNING: Skipped columns not found in target database:');
|
||||||
|
|
||||||
|
foreach ($skippedColumns as $type => $columns) {
|
||||||
|
$io->writeLine(" {$type}: " . implode(', ', $columns));
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private function entityTypeExists(string $entityType): bool
|
private function entityTypeExists(string $entityType): bool
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "DataMigration",
|
"name": "DataMigration",
|
||||||
"version": "1.1.3",
|
"version": "1.2.3",
|
||||||
"acceptableVersions": [
|
"acceptableVersions": [
|
||||||
">=8.0.0"
|
">=8.0.0"
|
||||||
],
|
],
|
||||||
|
|||||||
Reference in New Issue
Block a user