POSTGRES:将主键类型从varchar更改为uuid,并由其他tabless引用

Vic*_*Liu 6 postgresql

我有表客户和用户,我想将他们的ID从字符变为uuid.

=>\d customers;
         Table "public.customers"
  Column  |       Type        | Modifiers
----------+-------------------+-----------
 id       | character varying | not null
 name     | character varying | not null
Indexes:
    "customers_pkey" PRIMARY KEY, btree (id)
    "customers_name_key" UNIQUE CONSTRAINT, btree (name)
Referenced by:
    TABLE "users" CONSTRAINT "users_customer_id_fkey" FOREIGN KEY (customer_id) REFERENCES customers(id) DEFERRABLE INITIALLY DEFERRED

=>\d users;
             Table "public.users"
    Column     |       Type        | Modifiers
---------------+-------------------+-----------
 id            | character varying | not null
 name          | character varying | not null
 customer_id   | character varying | not null
 login         | character varying | not null
Indexes:
    "users_pkey" PRIMARY KEY, btree (id)
    "users_login_key" UNIQUE CONSTRAINT, btree (login)
Foreign-key constraints:
    "users_customer_id_fkey" FOREIGN KEY (customer_id) REFERENCES customers(id) DEFERRABLE INITIALLY DEFERRED
Run Code Online (Sandbox Code Playgroud)

我试过了:

=>begin;
set constraints all deferred;
ALTER TABLE users alter customer_id type uuid using customer_id::uuid;
ALTER TABLE customers alter id type uuid using id::uuid;
end;
Run Code Online (Sandbox Code Playgroud)

但是在这行之后我遇到了不兼容的类型错误

=> ALTER TABLE customers alter id type uuid using id::uuid;
ERROR:  foreign key constraint "users_customer_id_fkey" cannot be implemented
DETAIL:  Key columns "customer_id" and "id" are of incompatible types: character varying and uuid.
Run Code Online (Sandbox Code Playgroud)

任何帮助将不胜感激.谢谢

Don*_*ler 2

您肯定想删除外键约束。让我惊讶的是,您不必删除 PostgreSQL 的 PK 约束或索引来更改数据类型。我设置了一个测试,效果很好,只需先删除 FK,然后再重新添加即可。