mirror of
https://github.com/Dokploy/dokploy.git
synced 2026-07-15 19:05:28 +02:00
- Introduced a new column "created_at" with a default timestamp to the "invitation" table. - Updated the account schema to reflect this change, ensuring consistency across the database structure. - Added corresponding metadata in the snapshot and journal files for versioning.
1 line
82 B
SQL
1 line
82 B
SQL
ALTER TABLE "invitation" ADD COLUMN "created_at" timestamp DEFAULT now() NOT NULL; |