* Add url and description fields to OAuthClient model * Add OAuth client icon editing and deleting endpoints * updated query data * fix missed queries * sqlx prep * update with tests builds
7 lines
126 B
SQL
7 lines
126 B
SQL
-- Add migration script here
|
|
ALTER TABLE
|
|
oauth_clients
|
|
ADD
|
|
COLUMN url text NULL,
|
|
ADD
|
|
COLUMN description text NULL; |