File: ingredients.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 (7 lines) | stat: -rw-r--r-- 152 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
CREATE TABLE ingredients (
  id INTEGER NOT NULL,
  recipe_id INTEGER NOT NULL,
  name VARCHAR(50),
  quantity SMALLINT,
  PRIMARY KEY (id,recipe_id)
)