You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can any changes be made to this package to remove the use of generated columns?
SQLSTATE[0A000]: Feature not supported: 7 ERROR: GENERATED columns are not supported (Connection: newdatabase, SQL: create table "pulse_values" ("id" bigserial not null primary key, "timestamp" integer not null, "type" varchar(255) not null, "key" text not null, "key_hash" uuid not null generated always as (md5("key")::uuid) stored, "value" text not null))
Steps To Reproduce
Use Pulse with PostreSQL 15.12
The text was updated successfully, but these errors were encountered:
Although your change may allow the migrations to run, I feel that it would cause issues for you while running Pulse, as the key_hash column would never be generated. I imagine this will result in Pulse seeing every query as the same query, every request as the same route, every cache key as the same cache key, etc.
Can you triple check the Postgres version that you have configured for Pulse. Remember that Pulse can use a dedicated database.
If you continue to have issues on Postgres 15 and are using it because your current application is using that version, I would recommend spinning up a dedicated database for Pulse with the latest Postgres version.
Pulse Version
1.2
Laravel Version
11.0
PHP Version
8.2
Livewire Version
N/A
Database Driver & Version
PostreSQL 15.12 on https://www.thenile.dev
Description
Can any changes be made to this package to remove the use of generated columns?
Steps To Reproduce
Use Pulse with PostreSQL 15.12
The text was updated successfully, but these errors were encountered: