Mam następujący schemat tabeli, który mapuje user_customers do uprawnień w bazie danych MySQL na żywo:
mysql> describe user_customer_permission;
+------------------+---------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+------------------+---------+------+-----+---------+----------------+
| id | int(11) | NO | PRI | NULL | auto_increment |
| user_customer_id | int(11) | NO | PRI | NULL | |
| permission_id | int(11) | NO | PRI | NULL | |
+------------------+---------+------+-----+---------+----------------+
3 rows in set (0.00 sec)
Chciałbym usunąć klucze podstawowe dla id_użytkownika i id_użytkownika i zachować klucz podstawowy dla identyfikatora.
Po uruchomieniu polecenia:
alter table user_customer_permission drop primary key;
Otrzymuję następujący błąd:
ERROR 1075 (42000): Incorrect table definition; there can be only one auto column and it must be defined as a key
Jak mogę upuścić klucz podstawowy kolumny?