Erro de código :1005 Não é possível criar a tabela 'custom_db2.durableprofile' (erro:150)

StackOverflow https://stackoverflow.com//questions/25014220

  •  21-12-2019
  •  | 
  •  

Pergunta

não é possível criar banco de dados

--------------------------------------------------------
create table DurableArticle(

    durable_code varchar(30) not null,
    durable_name varchar(100),
    durable_number varchar(20),
    durable_brandname varchar(125),
    durable_modelordetail varchar(125), 
    durable_price varchar(20),
    durable_entrance varchar(20),

    constraint durable_PK primary key (durable_code)
)ENGINE=InnoDB DEFAULT CHARSET=utf8;

---------------------------------------------


create table DurableProfile(

    profile_year integer not null,
    profile_status varchar(100),
    profile_note varchar(100),
    staff_id integer not null,
    owner_id integer not null,
    room_id integer not null,
    durable_code varchar(30) not null,

    constraint profile_PK primary key (profile_year,durable_code),
    constraint profile_FK1 foreign key (staff_id) references staff(staff_id),
    constraint profile_FK2 foreign key (owner_id) references owner(owner_id),
    constraint profile_FK3 foreign key (room_id) references room(room_id),
    constraint profile_Fk4 foreign key (durable_code) references durablearticle (durable_code)

)ENGINE=InnoDB;
Foi útil?

Solução

você faz referência a 3 tabelas na segunda instrução, que obviamente não existem (ainda).Remova as chaves estrangeiras ou crie essas tabelas, então funciona.

create table DurableProfile(

    profile_year integer not null, 
    profile_status varchar(100), 
    profile_note varchar(100), 
    staff_id integer not null, 
    owner_id integer not null, 
    room_id integer not null, 
    durable_code varchar(30) not null,

    constraint profile_PK primary key (profile_year,durable_code), 
    constraint profile_Fk4 foreign key (durable_code) references durablearticle (durable_code)

)ENGINE=InnoDB;
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top