mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-17 01:11:38 +03:00
6 lines
218 B
SQL
6 lines
218 B
SQL
ALTER TABLE audit_logs ALTER COLUMN ip_address DROP NOT NULL;
|
|
|
|
-- Add missing indexes
|
|
CREATE INDEX idx_audit_logs_created_at ON audit_logs(created_at);
|
|
CREATE INDEX idx_audit_logs_user_agent ON audit_logs(user_agent);
|