From: <jh...@us...> - 2009-09-14 20:13:33
|
Revision: 92 http://etch.svn.sourceforge.net/etch/?rev=92&view=rev Author: jheiss Date: 2009-09-14 20:13:25 +0000 (Mon, 14 Sep 2009) Log Message: ----------- Updated per recent migrations Modified Paths: -------------- trunk/server/db/schema.rb Modified: trunk/server/db/schema.rb =================================================================== --- trunk/server/db/schema.rb 2009-09-14 20:12:12 UTC (rev 91) +++ trunk/server/db/schema.rb 2009-09-14 20:13:25 UTC (rev 92) @@ -14,10 +14,12 @@ create_table "clients", :force => true do |t| t.string "name", :null => false t.integer "status" + t.text "message" t.datetime "created_at" t.datetime "updated_at" end + add_index "clients", ["updated_at"], :name => "index_clients_on_updated_at" add_index "clients", ["status"], :name => "index_clients_on_status" add_index "clients", ["name"], :name => "index_clients_on_name", :unique => true @@ -63,6 +65,7 @@ t.datetime "updated_at" end + add_index "results", ["created_at"], :name => "index_results_on_created_at" add_index "results", ["file"], :name => "index_results_on_file" add_index "results", ["client_id"], :name => "index_results_on_client_id" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <jh...@us...> - 2009-09-23 01:05:13
|
Revision: 99 http://etch.svn.sourceforge.net/etch/?rev=99&view=rev Author: jheiss Date: 2009-09-23 01:05:05 +0000 (Wed, 23 Sep 2009) Log Message: ----------- Remove schema.rb from revision control since it is auto-generated Removed Paths: ------------- trunk/server/db/schema.rb Deleted: trunk/server/db/schema.rb =================================================================== --- trunk/server/db/schema.rb 2009-09-23 01:02:24 UTC (rev 98) +++ trunk/server/db/schema.rb 2009-09-23 01:05:05 UTC (rev 99) @@ -1,72 +0,0 @@ -# This file is auto-generated from the current state of the database. Instead of editing this file, -# please use the migrations feature of Active Record to incrementally modify your database, and -# then regenerate this schema definition. -# -# Note that this schema.rb definition is the authoritative source for your database schema. If you need -# to create the application database on another system, you should be using db:schema:load, not running -# all the migrations from scratch. The latter is a flawed and unsustainable approach (the more migrations -# you'll amass, the slower it'll run and the greater likelihood for issues). -# -# It's strongly recommended to check this file into your version control system. - -ActiveRecord::Schema.define(:version => 20081003164106) do - - create_table "clients", :force => true do |t| - t.string "name", :null => false - t.integer "status" - t.text "message" - t.datetime "created_at" - t.datetime "updated_at" - end - - add_index "clients", ["updated_at"], :name => "index_clients_on_updated_at" - add_index "clients", ["status"], :name => "index_clients_on_status" - add_index "clients", ["name"], :name => "index_clients_on_name", :unique => true - - create_table "etch_configs", :force => true do |t| - t.integer "client_id", :null => false - t.string "file", :null => false - t.text "config", :null => false - t.datetime "created_at" - t.datetime "updated_at" - end - - add_index "etch_configs", ["file"], :name => "index_etch_configs_on_file" - add_index "etch_configs", ["client_id"], :name => "index_etch_configs_on_client_id" - - create_table "facts", :force => true do |t| - t.integer "client_id", :null => false - t.string "key", :null => false - t.text "value", :null => false - t.datetime "created_at" - t.datetime "updated_at" - end - - add_index "facts", ["key"], :name => "index_facts_on_key" - add_index "facts", ["client_id"], :name => "index_facts_on_client_id" - - create_table "originals", :force => true do |t| - t.integer "client_id", :null => false - t.string "file", :null => false - t.string "sum", :null => false - t.datetime "created_at" - t.datetime "updated_at" - end - - add_index "originals", ["file"], :name => "index_originals_on_file" - add_index "originals", ["client_id"], :name => "index_originals_on_client_id" - - create_table "results", :force => true do |t| - t.integer "client_id", :null => false - t.string "file", :null => false - t.boolean "success", :null => false - t.text "message", :null => false - t.datetime "created_at" - t.datetime "updated_at" - end - - add_index "results", ["created_at"], :name => "index_results_on_created_at" - add_index "results", ["file"], :name => "index_results_on_file" - add_index "results", ["client_id"], :name => "index_results_on_client_id" - -end This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |