Remove api updated at column, as API keys can not be edited once created

This commit is contained in:
Marcus Hill 2022-05-07 16:40:06 +01:00
parent f4537ac80a
commit 53ae901f15
1 changed files with 0 additions and 1 deletions

1
db.sql
View File

@ -48,7 +48,6 @@ CREATE TABLE `api_keys` (
`api_key_name` varchar(255) NOT NULL,
`api_key_secret` varchar(255) NOT NULL,
`api_key_created_at` datetime NOT NULL DEFAULT current_timestamp(),
`api_key_updated_at` datetime DEFAULT NULL,
`api_key_expire` date NOT NULL,
`api_key_client_id` int(11) NOT NULL DEFAULT 0,
`company_id` int(11) NOT NULL,