bsag / tracks

Tracks is a GTD(TM) web application, built with Ruby on Rails

This URL has Read+Write access

lrbalt (author)
Tue Jun 24 11:35:30 -0700 2008
commit  ce1c09217327e82c06ef5dc456c2a700258f18e6
tree    59f817d19cd3c143398471b69b515e05a09bfa8f
parent  c58186451f6f6ec1116cfac3c131ba3ae5dc88ea
tracks / vendor / plugins / scenarios / testing / schema.rb
100644 31 lines (25 sloc) 0.731 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
ActiveRecord::Schema.define do
  create_table :people, :force => true do |t|
    t.column :first_name, :string
    t.column :last_name, :string
  end
  
  create_table :places, :force => true do |t|
    t.column :name, :string
    t.column :location, :string
  end
  
  create_table :things, :force => true do |t|
    t.column :name, :string
    t.column :description, :string
  end
  
  create_table :side_effecty_things, :force => true do |t|
  end
 
  create_table :models, :force => true do |t|
    t.column :name, :string
    t.column :description, :string
  end
  
  create_table :notes, :force => true do |t|
    t.column :content, :string
    t.column :created_at, :datetime
    t.column :updated_at, :datetime
  end
end