IlyaCredo
IlyaCredo
> @Forceres You can use unique constraints in the `on_conflict` target argument as described [here](https://piccolo-orm.readthedocs.io/en/latest/piccolo/query_clauses/on_conflict.html#target), but you need to add `unique=True` to each separate column in the table definition. The...
> Names with `-` in them might cause issues. Unless they're wrapped in quotes i.e. `"students-teaches"` Postgres will complain. Underscores are preferred. It shouidn't be a problem. ORM must solve...
Ended with implementing my own joins builder, the absence of reverse look up relationships forced to do it
> Same here, trying with supabase: > > 1. Pressed "Connect to predefined network" > > 2. Restarted service > > 3. checked deployable docker compose file: network not attached....
> Did you restart your service after you set the `Connect To Predefined Network`? Yeah, restarted several times, also tested with other services
> can you show an image of what you are seeing, as all the connect to predefined network does is; it will add the containers to the coolify network, it...
Yeah. ```yaml services: cadvisor: container_name: cadvisor image: 'gcr.io/cadvisor/cadvisor:latest' environment: - 'CADVISOR_PORT=${CADVISOR_PORT}' ports: - '${CADVISOR_PORT}:${CADVISOR_PORT}' command: - '--enable_metrics=cpu,memory,network,sched,oom_event,diskIO,cpuLoad,app,percpu,perf_event,process,tcp,udp' - '--store_container_labels=true' - '--docker_only=true' - '--port=${CADVISOR_PORT}' privileged: true volumes: - '/:/rootfs:ro' - '/var/run:/var/run:rw'...
> Can you paste or link to the compose file you are using Done
> [@Forceres](https://github.com/Forceres) can you check /horizon make sure queues are empty then run the following in a terminal on the vps and leave open > > ``` > docker events...
> [@Forceres](https://github.com/Forceres) if you are trying to connect to this service from another compose, you need to connect both to the same docker network > > so either define your...