public
Description: Canberra Ruby Crew Site #crc
Homepage: http://canberraruby.com
Clone URL: git://github.com/artpop/crc_site.git
generated a meetings scaffold
schlick (author)
Sat Oct 18 14:34:13 -0700 2008
commit  39fbf0dfc248e39744200e20279175d2bc31818f
tree    cc268024906524e3aed82f1bfebbbf6c7525ac62
parent  da00469b12cdb41860836d969b14789e80e1011a
...
1
 
 
2
3
4
...
1
2
3
4
5
6
0
@@ -1,4 +1,6 @@
0
 ActionController::Routing::Routes.draw do |map|
0
+  map.resources :meetings
0
+
0
 
0
   map.commits '/hacks', :controller => 'commits'
0
 
...
9
10
11
12
 
13
14
15
...
57
58
59
 
 
 
 
 
 
 
60
61
62
...
9
10
11
 
12
13
14
15
...
57
58
59
60
61
62
63
64
65
66
67
68
69
0
@@ -9,7 +9,7 @@
0
 #
0
 # It's strongly recommended to check this file into your version control system.
0
 
0
-ActiveRecord::Schema.define(:version => 20081015120059) do
0
+ActiveRecord::Schema.define(:version => 20081018210850) do
0
 
0
   create_table "bj_config", :primary_key => "bj_config_id", :force => true do |t|
0
     t.text "hostname"
0
@@ -57,6 +57,13 @@ ActiveRecord::Schema.define(:version => 20081015120059) do
0
     t.integer  "exit_status",    :limit => 11
0
   end
0
 
0
+  create_table "meetings", :force => true do |t|
0
+    t.datetime "date"
0
+    t.string   "venue"
0
+    t.datetime "created_at"
0
+    t.datetime "updated_at"
0
+  end
0
+
0
   create_table "people", :force => true do |t|
0
     t.string   "username"
0
     t.string   "name"

Comments