]> git.gir.st - subscriptionfeed.git/commit
[DATABASE CHANGE: Migration below] allow setting user settings from profile page
authorgirst <tobi@isticktoit.net>
Wed, 26 Apr 2023 17:19:02 +0000 (17:19 +0000)
committergirst <tobi@isticktoit.net>
Wed, 26 Apr 2023 17:20:23 +0000 (17:20 +0000)
commit7820b9fcc883a70b9b85a74e0bcb7b4dd14535ae
treef5b278cca67261a73d906ea2f1551634b4271c45
parent272386ad5bf8a58d36d4639bc3da76fe5df67133
[DATABASE CHANGE: Migration below] allow setting user settings from profile page

CREATE TABLE IF NOT EXISTS user_settings(
       user_id INTEGER,
       setting TEXT NOT NULL,
       value TEXT NOT NULL,
       PRIMARY KEY(user_id, setting),
       FOREIGN KEY(user_id) REFERENCES users(id));
app/common/user.py
app/templates/account_mgmt.html.j2
config/setup.sql
Imprint / Impressum