Renamed helpers to correspond to renamed Controller classes.
[merb_radiant.git] / radiant_extensions_plugins / plugins / scenarios / testing / .svn / text-base / schema.rb.svn-base
blob30a1326c3072781377b5e5ec98ad5d48b07b9dad
1 ActiveRecord::Schema.define do
2   create_table :people, :force => true do |t|
3     t.column :first_name, :string
4     t.column :last_name, :string
5   end
6   
7   create_table :places, :force => true do |t|
8     t.column :name, :string
9     t.column :location, :string 
10   end
11   
12   create_table :things, :force => true do |t|
13     t.column :name, :string
14     t.column :description, :string
15   end
16   
17   create_table :side_effecty_things, :force => true do |t|
18   end
20   create_table :models, :force => true do |t|
21     t.column :name, :string
22     t.column :description, :string
23   end
24   
25   create_table :notes, :force => true do |t|
26     t.column :content, :string
27     t.column :created_at, :datetime
28     t.column :updated_at, :datetime
29   end
30 end
31