James Ward

Results 65 comments of James Ward
trafficstars

This adds a ton of complexity for the benefit of "it looks nicer". Is that correct?

> In Laravel there is something like "after" and "before". > We can mention column name where it should be. > e.g. > > ``` > @Before('name') > @After('password') >...

It could be that the API has changed a bit - but this seems like it might be an upstream issue? Not sure. Were you just trying to run it...

I think this is related to #1668 ? Difficult to tell.

While I think that a multi-instance setup is common enough that you'll run into these kinds of problems - I think that writing a wrapper around TypeORM's migration to add...

You can also add Ruby on Rails to the list. It doesn't implement an explicit lock. [Like the other more mature ORMs it also uses a database level locking mechanism.](https://github.com/rails/rails/blob/master/activerecord/lib/active_record/migration.rb#L1238-L1244)...

Best guess without digging into it: The `false` is normalized by the postgres database server to be `FALSE` which `FALSE !== false` so it generates a new one.

> Got the same problem. The "duplicate" query in my case is: > > ```sql > await queryRunner.query(` > ALTER TABLE "foo" > ALTER COLUMN "bar" > SET DEFAULT to_jsonb('{}'::...

It sets the name of the app when you're connecting a new organization. Without this set, you'll be directed to connecting codecov which is not the GitHub app for a...

To do the `sed` patching it'd be something like.. ```bash GITHUB_APP_BASE=${CODECOV_GITHUB_APP_SEARCH:=codecov} if [ -n "${CODECOV_GITHUB_APP}" ]; then echo "Replacing Github App ${GITHUB_APP_BASE} for ${CODECOV_GITHUB_APP}" sed -i "s/GH_APP:\"${GH_APP_BASE}\"/GH_APP:\"${CODECOV_GITHUB_APP}\"/g" /var/www/app/gazebo/static/js/main.* fi ```...