mirror of
https://git.meshkee.com/Meshkee/backend.git
synced 2026-08-11 22:30:59 +04:30
Expose branding.defaultLocale, optional user EN name fields, and lightweight dual daily activity for orders/customers; update project context and rules. Co-authored-by: Cursor <cursoragent@cursor.com>
5 lines
225 B
SQL
5 lines
225 B
SQL
-- English given/family names on users (alongside existing first_name / last_name as FA/primary).
|
|
ALTER TABLE users
|
|
ADD COLUMN IF NOT EXISTS first_name_en VARCHAR(100),
|
|
ADD COLUMN IF NOT EXISTS last_name_en VARCHAR(100);
|