summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'projects/devdashboard/db/schema.rb')
-rw-r--r--projects/devdashboard/db/schema.rb37
1 files changed, 37 insertions, 0 deletions
diff --git a/projects/devdashboard/db/schema.rb b/projects/devdashboard/db/schema.rb
new file mode 100644
index 0000000..5ece916
--- /dev/null
+++ b/projects/devdashboard/db/schema.rb
@@ -0,0 +1,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