Ben kullanıcı_customers canlı MySQL veritabanındaki izinleri eşleyen aşağıdaki tablo şeması var:
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)
User_customer_id ve allow_id için birincil anahtarları kaldırmak ve id için birincil anahtarı tutmak istiyorum.
Komutu çalıştırdığımda:
alter table user_customer_permission drop primary key;
Aşağıdaki hatayı alıyorum:
ERROR 1075 (42000): Incorrect table definition; there can be only one auto column and it must be defined as a key
Bir sütunun birincil anahtarını nasıl bırakabilirim?