<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>app/models/attendance.rb</filename>
    </added>
    <added>
      <filename>db/migrate/20081020105053_create_attendances.rb</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -1,9 +1,9 @@
 class Meeting &lt; ActiveRecord::Base
   
-  has_many    :participations,  :dependent =&gt; :destroy
-  has_many    :participants,    :through =&gt; :participations, :source =&gt; :person
+  has_many    :attendances,  :dependent =&gt; :destroy
+  has_many    :attendees,    :through =&gt; :attendances, :source =&gt; :person
 
   validates_presence_of :date
   validates_presence_of :venue
-  
+    
 end</diff>
      <filename>app/models/meeting.rb</filename>
    </modified>
    <modified>
      <diff>@@ -9,7 +9,14 @@
 #
 # It's strongly recommended to check this file into your version control system.
 
-ActiveRecord::Schema.define(:version =&gt; 20081019120723) do
+ActiveRecord::Schema.define(:version =&gt; 20081020105053) do
+
+  create_table &quot;attendances&quot;, :force =&gt; true do |t|
+    t.integer  &quot;person_id&quot;,  :limit =&gt; 11
+    t.integer  &quot;meeting_id&quot;, :limit =&gt; 11
+    t.datetime &quot;created_at&quot;
+    t.datetime &quot;updated_at&quot;
+  end
 
   create_table &quot;bj_config&quot;, :primary_key =&gt; &quot;bj_config_id&quot;, :force =&gt; true do |t|
     t.text &quot;hostname&quot;
@@ -64,13 +71,6 @@ ActiveRecord::Schema.define(:version =&gt; 20081019120723) do
     t.datetime &quot;updated_at&quot;
   end
 
-  create_table &quot;participations&quot;, :force =&gt; true do |t|
-    t.integer  &quot;person_id&quot;,  :limit =&gt; 11
-    t.integer  &quot;meeting_id&quot;, :limit =&gt; 11
-    t.datetime &quot;created_at&quot;
-    t.datetime &quot;updated_at&quot;
-  end
-
   create_table &quot;people&quot;, :force =&gt; true do |t|
     t.string   &quot;username&quot;
     t.string   &quot;name&quot;</diff>
      <filename>db/schema.rb</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>app/models/participation.rb</filename>
    </removed>
    <removed>
      <filename>db/migrate/20081019120723_create_participations.rb</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>0ff3ae3c2346bce90961454a8edf30ba87adfd12</id>
    </parent>
  </parents>
  <author>
    <name>Michael MacDonald</name>
    <email>michaelm@amc.org.au</email>
  </author>
  <url>http://github.com/artpop/crc_site/commit/885adee13e8c066e5014c0b4be05d41248fd660e</url>
  <id>885adee13e8c066e5014c0b4be05d41248fd660e</id>
  <committed-date>2008-10-20T04:52:18-07:00</committed-date>
  <authored-date>2008-10-20T04:52:18-07:00</authored-date>
  <message>renamed participations to attendances</message>
  <tree>91590b9a2945b250564b2da93af77ca13d348469</tree>
  <committer>
    <name>Michael MacDonald</name>
    <email>michaelm@amc.org.au</email>
  </committer>
</commit>
