aboutsummaryrefslogtreecommitdiffstats
path: root/db
diff options
context:
space:
mode:
authorMarc Florisson2015-01-21 14:01:12 +0100
committerMarc Florisson2015-01-21 14:01:12 +0100
commitb8ed9f192bf698b5aeaf045b8f2ab55f2c7500b0 (patch)
tree336d7a7cc0b69fd7602da8f768714e465e1b9010 /db
parent7d984efe77efd8e610c91fcefc35c4a3e17412fd (diff)
downloadchouette-core-b8ed9f192bf698b5aeaf045b8f2ab55f2c7500b0.tar.bz2
add footnotes
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"