diff options
Diffstat (limited to 'db')
-rw-r--r-- | db/schema.rb | 9 |
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 |