Files
openccb/services/lms-service/migrations/20260115000006_add_updated_at_to_users.sql

5 lines
180 B
SQL

-- Migration: Add updated_at to users table (LMS)
-- To match common::models::User struct requirements
ALTER TABLE users ADD COLUMN updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW();