<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Mostly Harmless &#187; RecipeDB</title>
	<atom:link href="http://www.strangely-normal.com/tag/recipedb/feed" rel="self" type="application/rss+xml" />
	<link>http://www.strangely-normal.com</link>
	<description>Shannon's Guide To The Galaxy</description>
	<lastBuildDate>Wed, 21 Dec 2011 15:02:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>RecipeDB: database design</title>
		<link>http://www.strangely-normal.com/2008/05/17/33</link>
		<comments>http://www.strangely-normal.com/2008/05/17/33#comments</comments>
		<pubDate>Sat, 17 May 2008 23:24:56 +0000</pubDate>
		<dc:creator>Shannon Patterson</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[RecipeDB]]></category>
		<category><![CDATA[table definition]]></category>

		<guid isPermaLink="false">http://www.strangely-normal.com/2008/05/17/33</guid>
		<description><![CDATA[Yesterday I wrote the database schema for the recipe app I&#8217;m working on. The files only come inserting recipes; I will add more files as I progress into other parts of the project. Tables: Recipe Category Nutritional_Info Ingredient Directions Comments category: id category_name created_by created_at updated_by updated_at is_active recipe: id recipe_name blurb category_id number_of_servings prep_time <a href='http://www.strangely-normal.com/2008/05/17/33'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>Yesterday I wrote the database schema for the recipe app I&#8217;m working on.  The files only come inserting recipes; I will add more files as I progress into other parts of the project.  </p>
<p>Tables:</p>
<ul>
<li><b>Recipe</b></li>
<li><b>Category</b></li>
<li><b>Nutritional_Info</b></li>
<li><b>Ingredient</b></li>
<li><b>Directions</b></li>
<li><b>Comments</b></li>
</ul>
<p><span id="more-33"></span><br />
<code><br />
category:<br />
  id<br />
  category_name<br />
  created_by<br />
  created_at<br />
  updated_by<br />
  updated_at<br />
  is_active</p>
<p>recipe:<br />
  id<br />
  recipe_name<br />
  blurb<br />
  category_id<br />
  number_of_servings<br />
  prep_time<br />
  cook_time<br />
  created_by<br />
  created_at<br />
  updated_by<br />
  updated_at<br />
  is_active</p>
<p>nutritional_info:<br />
  id<br />
  recipe_id<br />
  info_name<br />
  measure<br />
  unit<br />
  created_by<br />
  created_at<br />
  updated_by<br />
  updated_at<br />
  is_active</p>
<p>ingredient:<br />
  id<br />
  recipe_id<br />
  ingredient_name<br />
  adjective<br />
  measure<br />
  unit<br />
  created_by<br />
  created_at<br />
  updated_by<br />
  updated_at<br />
  is_active</p>
<p>directions:<br />
  id<br />
  recipe_id<br />
  step<br />
  direction<br />
  created_by<br />
  created_at<br />
  updated_by<br />
  updated_at<br />
  is_active</p>
<p>comments:<br />
  id<br />
  recipe_id<br />
  rating<br />
  comment<br />
  created_by<br />
  created_at<br />
  updated_by<br />
  updated_at<br />
  is_active<br />
</code></p>
<p>I also downloaded the symfony plugin <a href="http://trac.symfony-project.com/wiki/sfGuardPluginFor10">sfGuard</a> to deal with user management.  It automatically builds the db tables and in about 15 minutes, I had a login form working with a defaul user name.  Makes jumping into development a lot easier.  </p>
<p><a href="http://moonsoar.com/">The Courtney</a> said she would be willing to help me with some colour palette and page design, etc.  That&#8217;s quite a way down the road though.  </p>
<p>Next step will be some basic functionality.  </p>
]]></content:encoded>
			<wfw:commentRss>http://www.strangely-normal.com/2008/05/17/33/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

