mirror of
https://github.com/usememos/memos.git
synced 2025-06-05 22:09:59 +02:00
feat: support Postgres (#2569)
* skeleton of postgres skeleton * Adding Postgres specific db schema sql * user test passed * memo store test passed * tag is working * update user setting test done * activity test done * idp test passed * inbox test done * memo_organizer, UNTESTED * memo relation test passed * webhook test passed * system setting test passed * passed storage test * pass resource test * migration_history done * fix memo_relation_test * fixing server memo_relation test * passes memo relation server test * paess memo test * final manual testing done * final fixes * final fixes cleanup * sync schema * lint * lint * lint * lint * lint
This commit is contained in:
5
store/db/postgres/seed/10003__memo_organizer.sql
Normal file
5
store/db/postgres/seed/10003__memo_organizer.sql
Normal file
@@ -0,0 +1,5 @@
|
||||
INSERT INTO
|
||||
memo_organizer (memo_id, user_id, pinned)
|
||||
VALUES
|
||||
(1, 101, 1),
|
||||
(3, 101, 1);
|
Reference in New Issue
Block a user