aboutsummaryrefslogtreecommitdiffstats
path: root/db/schema.rb
diff options
context:
space:
mode:
authortony <tony>2009-03-09 15:48:32 +0000
committertony <tony>2009-03-09 15:48:32 +0000
commit828f73e10cea0e6be417d977c4b5f7f10ceae9b1 (patch)
treeb08f263cab0320c063887946d0c968a9d155f7c2 /db/schema.rb
parent0c2f263b6d3117fbb38740432284b31a0a474164 (diff)
Update models and schema for new table
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb9
1 files changed, 8 insertions, 1 deletions
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