Guest User

Untitled

a guest
Sep 30th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. create table tareas(
  2. id int not null PRIMARY key AUTO_INCREMENT,
  3. idvinedo int not null, idplantacion int not null,
  4. nombre varchar(50) not null,
  5. duracion varchar(50) not null,
  6. orden int not null,
  7. FOREIGN KEY (idvinedo) REFERENCES vinedo(id),
  8. FOREIGN KEY (idplantacion) REFERENCES plantaciones(id));
Add Comment
Please, Sign In to add comment