Skip to content

Commit

Permalink
fix flow
Browse files Browse the repository at this point in the history
  • Loading branch information
radex committed Jun 15, 2024
1 parent 99af408 commit efb9ba3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/adapters/sqlite/encodeSchema/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ const encodeAddColumnsMigrationStep: (AddColumnsMigrationStep) => SQL = ({
.join('')

// Requires sqlite 3.35.0 / iOS 15 / Android 14
const encodeDestroyColumnMigrationStep: (DestroyColumnMigrationStep, TableSchema) => SQL = ({
const encodeDestroyColumnMigrationStep: (DestroyColumnMigrationStep) => SQL = ({
table,
column,
}) => {
Expand All @@ -101,7 +101,7 @@ const encodeDestroyColumnMigrationStep: (DestroyColumnMigrationStep, TableSchema
}

// Requires sqlite 3.25.0 / iOS 13 / Android 11
const encodeRenameColumnMigrationStep: (RenameColumnMigrationStep, TableSchema) => SQL = ({
const encodeRenameColumnMigrationStep: (RenameColumnMigrationStep) => SQL = ({
table,
from,
to,
Expand Down

0 comments on commit efb9ba3

Please sign in to comment.