aboutsummaryrefslogtreecommitdiffstats
path: root/db/schema.rb
diff options
context:
space:
mode:
authorVlatka Pavisic2017-01-06 17:42:46 +0100
committerVlatka Pavisic2017-01-06 17:42:59 +0100
commit51534c59d3ddebf72a186cfc120d0481fab95d78 (patch)
tree24ed8f0c7d5e8a8bfdb2d86d0f441002c17226f9 /db/schema.rb
parentb6cd50e722136033c0e579ebfadd855d5fe7de7d (diff)
downloadchouette-core-51534c59d3ddebf72a186cfc120d0481fab95d78.tar.bz2
Refs #2347 : TimeTable with Calendar
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 562bf2ab6..ab58b696f 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
-ActiveRecord::Schema.define(version: 20161228092957) do
+ActiveRecord::Schema.define(version: 20170106135000) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@@ -644,8 +644,10 @@ ActiveRecord::Schema.define(version: 20161228092957) do
t.integer "int_day_types", default: 0
t.date "start_date"
t.date "end_date"
+ t.integer "calendar_id"
end
+ add_index "time_tables", ["calendar_id"], :name => "index_time_tables_on_calendar_id"
add_index "time_tables", ["objectid"], :name => "time_tables_objectid_key", :unique => true
create_table "time_tables_vehicle_journeys", id: false, force: true do |t|