You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some migrations might need to enable extensions such as uuid-ossp for generating UUID:s. Typically we would do this by executing CREATE EXTENSION IF NOT EXISTS "uuid-ossp"; or similar.
This doesn't impact the schema in any way, but it's useful for running the actual migrations. Sqldelight should (?) only need to recognize the syntax and ignore it for schema generation. Therefore I believe it should be fairly easy to implement.