Tagged Questions
0
votes
0answers
26 views
Is it possible for database migration tools, such as alembic to handle case sensitivity or insensitivity across database engines [closed]
Or it is better to be handled in application development code?
Thanks and best regards,
1
vote
0answers
78 views
how to create 'view migration' script using alembic tool
Does somebody know how to use create_view function to create a view using alembic upgrade function?
for example, we have:
CREATE VIEW myview AS
SELECT column_name(s)
FROM table_name
WHERE condition
...