updating schema
This commit is contained in:
parent
0d905a7124
commit
4b63a14198
1 changed files with 13 additions and 0 deletions
13
db/schema.rb
13
db/schema.rb
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in a new issue