aboutsummaryrefslogtreecommitdiffstats
path: root/db
diff options
context:
space:
mode:
Diffstat (limited to 'db')
-rw-r--r--db/schema.rb15
1 files changed, 14 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb
index ab6b71378..40f04d44f 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -11,7 +11,7 @@
#
# It's strongly recommended to check this file into your version control system.
-ActiveRecord::Schema.define(:version => 20141216085004) do
+ActiveRecord::Schema.define(:version => 20150120183020) do
create_table "access_links", :force => true do |t|
t.integer "access_point_id", :limit => 8
@@ -217,6 +217,19 @@ ActiveRecord::Schema.define(:version => 20141216085004) do
t.integer "choice_code"
end
+ create_table "footnotes", :force => true do |t|
+ t.integer "line_id", :limit => 8
+ t.string "code"
+ t.string "label"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ end
+
+ create_table "footnotes_vehicle_journeys", :id => false, :force => true do |t|
+ t.integer "vehicle_journey_id", :limit => 8
+ t.integer "footnote_id", :limit => 8
+ end
+
create_table "group_of_lines", :force => true do |t|
t.string "objectid", :null => false
t.integer "object_version"