Skip to main content

All Questions

5 votes
1 answer
204 views

Automatic database migration system

Github here: https://github.com/cmancone/mygrations I'm working on a different kind of database migration system for helping manage web applications. I asked a question about part of the system just ...
Conor Mancone's user avatar
5 votes
1 answer
101 views

Resolving MySQL 1215 errors in a declarative MySQL migration system

Github here: https://github.com/cmancone/mygrations I'm building a migration system for MySQL that operates in a very different way than the usual. Rather than recording changes in the database, the ...
Conor Mancone's user avatar
5 votes
1 answer
6k views

A Discord bot that connects to a local database (OOP)

I am currently working on a Discord bot as a way to learn and practice Python. I have been trying to learn object-oriented programming, and apply the "don't repeat yourself" principle. The code ...
braycarlson's user avatar
5 votes
2 answers
1k views

MySQL parser written in Python3

As the title suggests, I'm building a MySQL parser in python. The intention of this is to better support application development by managing migrations in a more declarative way. You can read about ...
Conor Mancone's user avatar