File: ingredient2recipe.sql

package info (click to toggle)
libdata-objectdriver-perl 0.25-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 784 kB
  • sloc: perl: 3,795; sql: 64; makefile: 7
file content (6 lines) | stat: -rw-r--r-- 163 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
CREATE TABLE ingredient2recipe (
  ingredient_id INTEGER NOT NULL,
  recipe_id INTEGER NOT NULL,
  value1 VARCHAR(255),
  PRIMARY KEY (recipe_id, ingredient_id)
)