File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ CREATE TABLE public.employee (
8
8
PRIMARY KEY (emp_no)
9
9
);
10
10
11
- CREATE INDEX public . idx_employee_hire_date ON public .employee (hire_date);
11
+ CREATE INDEX idx_employee_hire_date ON public .employee (hire_date);
12
12
13
13
CREATE TABLE public .department (
14
14
dept_no TEXT NOT NULL ,
@@ -55,7 +55,7 @@ CREATE TABLE public.salary (
55
55
PRIMARY KEY (emp_no, from_date)
56
56
);
57
57
58
- CREATE INDEX public . idx_salary_amount ON public .salary (amount);
58
+ CREATE INDEX idx_salary_amount ON public .salary (amount);
59
59
60
60
CREATE TABLE public .audit (
61
61
id SERIAL PRIMARY KEY ,
@@ -65,9 +65,9 @@ CREATE TABLE public.audit (
65
65
changed_at TIMESTAMPTZ DEFAULT CURRENT_TIMESTAMP
66
66
);
67
67
68
- CREATE INDEX public . idx_audit_operation ON public .audit (operation);
69
- CREATE INDEX public . idx_audit_username ON public .audit (user_name);
70
- CREATE INDEX public . idx_audit_changed_at ON public .audit (changed_at);
68
+ CREATE INDEX idx_audit_operation ON public .audit (operation);
69
+ CREATE INDEX idx_audit_username ON public .audit (user_name);
70
+ CREATE INDEX idx_audit_changed_at ON public .audit (changed_at);
71
71
72
72
CREATE OR REPLACE FUNCTION public .log_dml_operations() RETURNS TRIGGER AS $$
73
73
BEGIN
You can’t perform that action at this time.
0 commit comments