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
{{ message }}
This repository has been archived by the owner on Jan 24, 2024. It is now read-only.
As of Postgresql v10, in addition to standard sequences and serial type, there is also an identity column.
Laravel has 2 methods for this:
->generatedAs($expression) | Create an identity column with specified sequence options (PostgreSQL)
-- | --
->always() | Defines the precedence of sequence values over input for an identity column (PostgreSQL)
Could You please add support for this feature?
The text was updated successfully, but these errors were encountered:
As of Postgresql v10, in addition to standard sequences and serial type, there is also an identity column.
Laravel has 2 methods for this:
Could You please add support for this feature?
The text was updated successfully, but these errors were encountered: