Matt Hegarty

Results 267 comments of Matt Hegarty

Ah.. So I understand that we cannot issue GRANT statements to tables if they don't exist yet, so the calls have to go after the `migrate.py` call.

(I'm including this for anyone else who goes down the rabbit hole of user permissions for Postgres / Django) I found you don't need to have calls in `migrate.sh` if...

Here is my full init script in case it is of use: ```bash #!/bin/bash # initialises the dev db only # https://github.com/sellonen/django-security-tips # https://aws.amazon.com/blogs/database/managing-postgresql-users-and-roles/ set -e SCHEMA=myschema RW_ROLE=readwrite echo "creating...

Also seeing this issue. AFAICT the correct version of underscore is installed: ``` $ npm list underscore [email protected] ~/Projects/angularjs/udemy/angular2-course ├─┬ [email protected] │ └─┬ [email protected] │ └─┬ [email protected] │ └─┬ [email protected]...

Thanks dawudr and imbroglioj - it is working for me now.

> perhaps it is no coincidence that it is identical in both packages Yes, this is because the change was applied in django-admin-sortable2 and then ported to django-import-export. The purpose...

Tested by running tox locally

I agree with @izimobil - could we keep pip support?

This is the workaround I used to fix this: ```javascript $(".daterangepicker").on("dp.change", function (e) { if (e.date === false) { $(e.target).closest("input").removeClass("inuse"); } }); ```

Note I have been able to get `bootstrap-datetimepicker` to work when using [version 4.17](https://jsfiddle.net/matthewhegarty/eu1adchj/5/)