From 828f73e10cea0e6be417d977c4b5f7f10ceae9b1 Mon Sep 17 00:00:00 2001 From: tony Date: Mon, 9 Mar 2009 15:48:32 +0000 Subject: Update models and schema for new table --- db/schema.rb | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'db/schema.rb') diff --git a/db/schema.rb b/db/schema.rb index 3096dd422..0f18df4a4 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -9,7 +9,7 @@ # # It's strongly recommended to check this file into your version control system. -ActiveRecord::Schema.define(:version => 73) do +ActiveRecord::Schema.define(:version => 74) do create_table "acts_as_xapian_jobs", :force => true do |t| t.string "model", :null => false @@ -59,6 +59,13 @@ ActiveRecord::Schema.define(:version => 73) do t.datetime "updated_at", :null => false end + create_table "holidays", :force => true do |t| + t.date "day" + t.text "description" + end + + add_index "holidays", ["day"], :name => "index_holidays_on_day" + create_table "incoming_messages", :force => true do |t| t.integer "info_request_id", :null => false t.datetime "created_at", :null => false -- cgit v1.2.3