summaryrefslogtreecommitdiff
blob: 5ece9164ec5f627a4f6e2eb00cb9f24ae806094e (plain)
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
32
33
34
35
36
37
# This file is autogenerated. Instead of editing this file, please use the
# migrations feature of ActiveRecord to incrementally modify your database, and
# then regenerate this schema definition.

ActiveRecord::Schema.define(:version => 3) do

  create_table "developers", :force => true do |t|
    t.column "nickname",     :string
    t.column "roles",        :string
    t.column "realname",     :string
    t.column "location",     :string
    t.column "pgpkey",       :string
    t.column "hackergotchi", :string
    t.column "forum_handle", :string
    t.column "status",       :string
    t.column "joined_on",    :date
  end

  create_table "developers_herds", :id => false, :force => true do |t|
    t.column "developer_id", :integer
    t.column "herd_id",      :integer
  end

  create_table "herds", :force => true do |t|
    t.column "name",        :string
    t.column "email",       :string
    t.column "description", :text
  end

  create_table "projects", :force => true do |t|
    t.column "name",         :string
    t.column "longname",     :string
    t.column "last_updated", :date
    t.column "description",  :text
  end

end