<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -15,6 +15,12 @@ You can also use a shorthand for setting properties, like so:
 
     print_r($cats-&gt;table('cats')-&gt;color('brown')-&gt;first);
 
+Or, if you prefer:
+
+    $cats-&gt;setting('table', 'cats');
+    $cats-&gt;color = 'brown';
+    print_r($cats-&gt;first);
+
 In most cases, you will want to have a place to modify the models that are returned by the above, so you can do the following, instead:
 
     class Cat extends SqloopBase { }
@@ -26,6 +32,17 @@ All of the above will generate the exact same query, which is:
 
 This query is not executed until the first() method is called.
 
+There are some things that you can place in your class definition to make your tables act differently. For instance, sqloop assumes that your table is named the same as your class with an s at the end, which is frequently not true. You can also manage relationships between tables:
+
+    class Cat extends SqloopBase
+    {
+      static function setup(){
+        Cat::table = 'kittehs';
+        Cat::belongs_to_a('Person');
+        Cat::has_many_of('LitterBox')-&gt;through('kitteh_litterbox');
+      }
+    }
+
 All methods with no arguments can be called without parenthesis. As such, first is actually a method call and can be accessed as either ``-&gt;first()`` or ``-&gt;first``.
 
 Sqloop is written to be used as a library, but is also included as a plugin which is installed by default with *pea*, another of chrisrhoden's projects. *peadmin*, the administrative interface for pea, relies on sqloop.</diff>
      <filename>README.markdown</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>045259ebd7c5526c677bb508819b420f3ead383c</id>
    </parent>
  </parents>
  <author>
    <name>chrisrhoden</name>
    <email>carhoden@gmail.com</email>
  </author>
  <url>http://github.com/chrisrhoden/sqloop/commit/7fbb47782823b130a444cd8a988ef4fbafb8b288</url>
  <id>7fbb47782823b130a444cd8a988ef4fbafb8b288</id>
  <committed-date>2009-10-18T20:07:15-07:00</committed-date>
  <authored-date>2009-10-18T20:07:15-07:00</authored-date>
  <message>added basic use for relations</message>
  <tree>5cdbc573ac9bb4e842ef96ed8beb81bf30887813</tree>
  <committer>
    <name>chrisrhoden</name>
    <email>carhoden@gmail.com</email>
  </committer>
</commit>
