public
Description: Tracks is a GTD(TM) web application, built with Ruby on Rails
Homepage: http://www.rousette.org.uk/projects/
Clone URL: git://github.com/bsag/tracks.git
Click here to lend your support to: tracks and make a donation at www.pledgie.com !
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