diffSchema
diffSchema(
_previous,_next):SchemaDiff
Defined in: packages/core/src/schema/migrate.ts:40
Computes a diff between two schema strings, identifying fields that now need migration and fields that were removed. Stub — always returns an empty diff; schema-string diffing is not yet implemented.
Parameters
Section titled “Parameters”_previous
Section titled “_previous”string
The prior schema source string. Currently unused; placeholder for the not-yet-implemented diffing logic.
string
The new schema source string. Currently unused; placeholder for the not-yet-implemented diffing logic.
Returns
Section titled “Returns”An empty SchemaDiff until diffing is implemented.