mirror of
https://github.com/LemmyNet/lemmy.git
synced 2025-02-02 23:31:41 +00:00
Formatting sql 2.
This commit is contained in:
parent
d6e661ea6d
commit
efbd329b23
1 changed files with 2 additions and 1 deletions
|
@ -899,7 +899,7 @@ BEGIN
|
||||||
LANGUAGE plpgsql
|
LANGUAGE plpgsql
|
||||||
AS $$
|
AS $$
|
||||||
BEGIN
|
BEGIN
|
||||||
-- TODO need to figure out how to do the other columns here
|
-- TODO need to figure out how to do the other columns here
|
||||||
INSERT INTO search_combined (published, thing_id)
|
INSERT INTO search_combined (published, thing_id)
|
||||||
VALUES (NEW.published, NEW.id);
|
VALUES (NEW.published, NEW.id);
|
||||||
RETURN NEW;
|
RETURN NEW;
|
||||||
|
@ -921,3 +921,4 @@ CALL r.create_search_combined_trigger ('comment');
|
||||||
CALL r.create_search_combined_trigger ('community');
|
CALL r.create_search_combined_trigger ('community');
|
||||||
|
|
||||||
CALL r.create_search_combined_trigger ('person');
|
CALL r.create_search_combined_trigger ('person');
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue