Update permission
-
All my tables have a primary column, but the insert, update and delete actions are grayed out in the row action panel. How can I make the app updatable?
CREATE TABLE
author
(author_idint NOT NULL auto_increment
,author_nativevarchar(80) NULL
,author_englishvarchar(80) NULL
,countryvarchar(50) NULL
,create_datetimestamp NULL DEFAULT CURRENT_TIMESTAMP
,PRIMARY KEY (author_id)
) ENGINE InnoDB DEFAULT CHARACTER SET utf8mb4 COLLATE=utf8mb4_unicode_ci;
The topic ‘Update permission’ is closed to new replies.