Skip to content

Commit

Permalink
Fix an error of FORMAT in the code migrating schema_migrations. (fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
fukamachi committed Jul 4, 2024
1 parent 7899875 commit 795107b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/migration/versions.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,10 @@
(case driver-type
(:mysql "UNSIGNED")
(otherwise "BIGINT"))
(find "dirty" db-columns :test 'equal :key 'first)))))
(find "dirty" db-columns :test 'equal :key 'first)
(case driver-type
(:mysql "UNSIGNED")
(otherwise "BOOLEAN"))))))
(execute-sql
(sxql:drop-table :schema_migrations_backup))))
(execute-sql (schema-migrations-table-definition))))))
Expand Down

0 comments on commit 795107b

Please sign in to comment.