diff options
author | trendspotter <j.podhorecky@volny.cz> | 2019-02-28 14:35:04 +0100 |
---|---|---|
committer | fguillot <fred@kanboard.net> | 2019-02-28 18:23:35 -0800 |
commit | 42694ac2afca782fdafb458e28f0154642f5f986 (patch) | |
tree | d0d3c4bcdcc90a11cea56240fc979153d6982fde /app | |
parent | 6d2b2f4a793fe6f9321fa5ed164af1fd3520e01b (diff) |
Fix postgres schema usage
Diffstat (limited to 'app')
-rw-r--r-- | app/Schema/Sql/postgres.sql | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Schema/Sql/postgres.sql b/app/Schema/Sql/postgres.sql index f1810ca3..cd282373 100644 --- a/app/Schema/Sql/postgres.sql +++ b/app/Schema/Sql/postgres.sql @@ -2747,5 +2747,5 @@ SELECT pg_catalog.setval('public.links_id_seq', 11, true); -- PostgreSQL database dump complete -- -INSERT INTO users (username, password, role) VALUES ('admin', '$2y$10$GzDCeQl/GdH.pCZfz4fWdO3qmayutRCmxEIY9U9t1k9q9F89VNDCm', 'app-admin'); -INSERT INTO schema_version VALUES ('111'); +INSERT INTO public.users (username, password, role) VALUES ('admin', '$2y$10$GzDCeQl/GdH.pCZfz4fWdO3qmayutRCmxEIY9U9t1k9q9F89VNDCm', 'app-admin'); +INSERT INTO public.schema_version VALUES ('111'); |