mirror of
https://github.com/immich-app/immich.git
synced 2025-12-25 17:24:58 +03:00
33 lines
760 B
TypeScript
33 lines
760 B
TypeScript
import { Comparer, DatabaseFunction, Reason } from 'src/sql-tools/types';
|
|
|
|
export const compareFunctions: Comparer<DatabaseFunction> = {
|
|
onMissing: (source) => [
|
|
{
|
|
type: 'FunctionCreate',
|
|
function: source,
|
|
reason: Reason.MissingInTarget,
|
|
},
|
|
],
|
|
onExtra: (target) => [
|
|
{
|
|
type: 'FunctionDrop',
|
|
functionName: target.name,
|
|
reason: Reason.MissingInSource,
|
|
},
|
|
],
|
|
onCompare: (source, target) => {
|
|
if (source.expression !== target.expression) {
|
|
const reason = `function expression has changed (${source.expression} vs ${target.expression})`;
|
|
return [
|
|
{
|
|
type: 'FunctionCreate',
|
|
function: source,
|
|
reason,
|
|
},
|
|
];
|
|
}
|
|
|
|
return [];
|
|
},
|
|
};
|