michaelbrooks / django-twitter-stream

Django app for streaming tweets from the Twitter API into a database.
MIT License
56 stars 17 forks source link

Is there any particular reason why this does not work with postgresql? #8

Open sam-ghosh opened 8 years ago

sam-ghosh commented 8 years ago

I checked it only works with MySql and not sqlite or postgresql. Is there any reason for this at implementation level?

Thanks

michaelbrooks commented 8 years ago

I had to write special cases for MySQL to enable big unsigned int fields (for twitter IDs), as in /twitter_stream/fields.py, and I never tested on other databases to see what issues might occur. What happened when you tried it?