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 (
88 PRIMARY KEY (emp_no)
99);
1010
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);
1212
1313CREATE TABLE public .department (
1414 dept_no TEXT NOT NULL ,
@@ -55,7 +55,7 @@ CREATE TABLE public.salary (
5555 PRIMARY KEY (emp_no, from_date)
5656);
5757
58- CREATE INDEX public . idx_salary_amount ON public .salary (amount);
58+ CREATE INDEX idx_salary_amount ON public .salary (amount);
5959
6060CREATE TABLE public .audit (
6161 id SERIAL PRIMARY KEY ,
@@ -65,9 +65,9 @@ CREATE TABLE public.audit (
6565 changed_at TIMESTAMPTZ DEFAULT CURRENT_TIMESTAMP
6666);
6767
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);
7171
7272CREATE OR REPLACE FUNCTION public .log_dml_operations() RETURNS TRIGGER AS $$
7373BEGIN
You can’t perform that action at this time.
0 commit comments