Skip to content

Instantly share code, notes, and snippets.

@brinchj
Created October 9, 2009 16:19
Show Gist options
  • Save brinchj/206144 to your computer and use it in GitHub Desktop.
Save brinchj/206144 to your computer and use it in GitHub Desktop.
From 1028a421cb7d7e9e38f4b8e50c240e6fd211c270 Mon Sep 17 00:00:00 2001
From: Johan Brinch <[email protected]>
Date: Fri, 9 Oct 2009 18:19:00 +0200
Subject: [PATCH] minor changes in comments
---
schema.sql | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/schema.sql b/schema.sql
index a999d7c..f9fb428 100644
--- a/schema.sql
+++ b/schema.sql
@@ -15,6 +15,7 @@ CREATE TABLE meal (
recipe INTEGER REFERENCES recipe(id)
);
+-- gimoas = g(oogle opskrift) i(ndkøb) m(ad) o(prydning) a(ndet) s(pise)
CREATE TABLE gimoas (
id SERIAL PRIMARY KEY,
tp VARCHAR(1),
@@ -40,3 +41,5 @@ CREATE VIEW scoreboard AS
FROM eater INNER JOIN eater_meal_gimoas eml ON (eater.id = eml.eater_id)
INNER JOIN gimoas ON (gimoas.id = eml.gimoas_id)
GROUP BY eater.id);
+
+
--
1.6.5.rc1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment