]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/tracepoint.rb
Merge remote-tracking branch 'upstream/pull/2381'
[rails.git] / app / models / tracepoint.rb
index 9485b8a14086b7d291c42eb24ff85a2fa4ee689c..6352824fd7f08c3c50f781c95c80837c10302aab 100644 (file)
@@ -1,4 +1,26 @@
-class Tracepoint < ActiveRecord::Base
+# == Schema Information
+#
+# Table name: gps_points
+#
+#  altitude  :float
+#  trackid   :integer          not null
+#  latitude  :integer          not null
+#  longitude :integer          not null
+#  gpx_id    :bigint(8)        not null
+#  timestamp :datetime
+#  tile      :bigint(8)
+#
+# Indexes
+#
+#  points_gpxid_idx  (gpx_id)
+#  points_tile_idx   (tile)
+#
+# Foreign Keys
+#
+#  gps_points_gpx_id_fkey  (gpx_id => gpx_files.id)
+#
+
+class Tracepoint < ApplicationRecord
   include GeoRecord
 
   self.table_name = "gps_points"