jobapis / jobs-to-mail

Your personal job-search assistant
https://jobs-to-mail.herokuapp.com/
Other
93 stars 38 forks source link

Token table migration fails with MySQL database #30

Closed maxleaver closed 7 years ago

maxleaver commented 7 years ago

The "create_tokens_table" migration fails if you're using a MySql/MariaDB database. It is trying to create an unsigned uuid field, but the field is of type CHAR in MySQL, so can't be unsigned.

I'm happy to create a pull request to remove the unsigned designator from the migration if it's helpful.

karllhughes commented 7 years ago

Hey Max, thanks for pointing this out. I've never run the app on MySQL/Maria, so I'm not too surprised it doesn't work quite right. A PR would be welcome!

karllhughes commented 7 years ago

Addressed in https://github.com/jobapis/jobs-to-mail/pull/31