Minor Changes
-
BREAKING CHANGE: removed
migrate(request)andcompileSql(DataMigrationOperation)The DDL operation ADT has been removed from
@remix-run/data-table, so this adapter no longer implementsmigrate()andcompileSql()only acceptsDataManipulationOperation. SQL-file migrations run through the newexecuteScript(sql, transaction?)method, which forwards toconnection.query(sql).mysql2 only accepts multi-statement scripts when the underlying connection or pool was created with
multipleStatements: true. Set that option when running migrations whoseup.sql/down.sqlcontains more than one statement.
Patch Changes
- Bumped
@remix-run/*dependencies: