-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Get SQLite Working #12
Comments
thanks! sqlite is tricky, as it doesn't support a number of the normal schema modification SQL commands. (and often requires created a new table, copying data, and deleting the old.) but i've already been through it the the django version of this tool, so prob. can pull out a lot of my old notes, and it'd be mostly rote work + testing. are you using sqlite in production somewhere? i could be pretty easily talked into implementing it, if you're serious about using it, and would be willing to help test and whatnot. |
I support this feature. We use sqlite for local and PostgreSQL on production. |
Hi, SQLite is still not listed in the supported dbs a year later. Is this still on your roadmap? :) |
@faisalraja why would you even think of doing that? Development must match production. Unless you develop on production. :> |
@metalcamp we did switch to postgresql on local but still kept bunch of our integration tests on sqlite. I actually made an auto migration also with sqlite support since I used the peewee way of adding columns but it's in that closed source project. |
For what it’s worth, I am using SQLite in both dev and production. |
Your tool is amazing. And works like a charm with MySql. Sqlite would be so great - your migration tool should not be the reason to change DB :-) How could we help? |
2 years later still hoping for sqlite. I do use it in production quite a bit. Its great for websites and small to medium deployments. Portability is also quite useful in a lot of cases. |
I'm here because I was thinking library support SQLite. I hope the feature too. |
I love what you're doing here with this pattern. What are the big barriers to getting SQLite working?
The text was updated successfully, but these errors were encountered: