Merge "Use LinkTarget in EmailNotification::updateWatchlistTimestamp"
[lhc/web/wiklou.git] / maintenance / postgres / archives / patch-bot_passwords.sql
1 CREATE TABLE bot_passwords (
2 bp_user INTEGER NOT NULL,
3 bp_app_id TEXT NOT NULL,
4 bp_password TEXT NOT NULL,
5 bp_token TEXT NOT NULL,
6 bp_restrictions TEXT NOT NULL,
7 bp_grants TEXT NOT NULL,
8 PRIMARY KEY ( bp_user, bp_app_id )
9 );