updating schema

This commit is contained in:
maxwell 2011-01-24 12:18:38 -08:00
parent 0d905a7124
commit 4b63a14198

View file

@ -77,6 +77,19 @@ ActiveRecord::Schema.define(:version => 20110120182100) do
add_index "data_points", ["statistic_id"], :name => "index_data_points_on_statistic_id"
create_table "histories", :force => true do |t|
t.string "message"
t.string "username"
t.integer "item"
t.string "table"
t.integer "month", :limit => 2
t.integer "year", :limit => 8
t.datetime "created_at"
t.datetime "updated_at"
end
add_index "histories", ["item", "table", "month", "year"], :name => "index_histories_on_item_and_table_and_month_and_year"
create_table "invitations", :force => true do |t|
t.text "message"
t.integer "sender_id"