Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- create table tareas(
- id int not null PRIMARY key AUTO_INCREMENT,
- idvinedo int not null, idplantacion int not null,
- nombre varchar(50) not null,
- duracion varchar(50) not null,
- orden int not null,
- FOREIGN KEY (idvinedo) REFERENCES vinedo(id),
- FOREIGN KEY (idplantacion) REFERENCES plantaciones(id));
Add Comment
Please, Sign In to add comment