New Ticket     Tickets     Wiki     Browse Source     Timeline     Roadmap     Ticket Reports     Search

Changeset 80567


Ignore:
Timestamp:
07/14/11 22:34:28 (4 years ago)
Author:
derek@…
Message:

-Created a Users table with a uuid field
-Removed uuid field from os_statistics
-Added user_id field to os_statistics which will reference a row id in the Users table

Location:
branches/gsoc11-statistics/stats-server/db
Files:
3 added
1 edited

Legend:

Unmodified
Added
Removed
  • branches/gsoc11-statistics/stats-server/db/schema.rb

    r80511 r80567  
    1111# It's strongly recommended to check this file into your version control system. 
    1212 
    13 ActiveRecord::Schema.define(:version => 20110713220512) do 
     13ActiveRecord::Schema.define(:version => 20110714162815) do 
    1414 
    1515  create_table "categories", :force => true do |t| 
     
    3131 
    3232  create_table "os_statistics", :force => true do |t| 
    33     t.string   "uuid" 
    3433    t.datetime "created_at" 
    3534    t.datetime "updated_at" 
     
    4140    t.string   "xcode_version" 
    4241    t.string   "gcc_version" 
     42    t.integer  "user_id" 
    4343  end 
    4444 
     
    6464  end 
    6565 
     66  create_table "users", :force => true do |t| 
     67    t.string   "uuid" 
     68    t.datetime "created_at" 
     69    t.datetime "updated_at" 
     70  end 
     71 
    6672end 
Note: See TracChangeset for help on using the changeset viewer.