Module: ActiveRecord::ConnectionAdapters::PostGIS::ColumnMethods
- Included in:
- ActiveRecord::ConnectionAdapters, TableDefinition
- Defined in:
- lib/active_record/connection_adapters/postgis/column_methods.rb
Instance Method Summary collapse
- #geography(name, options = {}) ⇒ Object
- #geometry(name, options = {}) ⇒ Object
- #geometry_collection(name, options = {}) ⇒ Object
- #line_string(name, options = {}) ⇒ Object
- #multi_line_string(name, options = {}) ⇒ Object
- #multi_point(name, options = {}) ⇒ Object
- #multi_polygon(name, options = {}) ⇒ Object
- #spatial(name, options = {}) ⇒ Object
- #st_point(name, options = {}) ⇒ Object
- #st_polygon(name, options = {}) ⇒ Object
Instance Method Details
#geography(name, options = {}) ⇒ Object
12 13 14 |
# File 'lib/active_record/connection_adapters/postgis/column_methods.rb', line 12 def geography(name, = {}) column(name, :geography, **) end |
#geometry(name, options = {}) ⇒ Object
16 17 18 |
# File 'lib/active_record/connection_adapters/postgis/column_methods.rb', line 16 def geometry(name, = {}) column(name, :geometry, **) end |
#geometry_collection(name, options = {}) ⇒ Object
20 21 22 |
# File 'lib/active_record/connection_adapters/postgis/column_methods.rb', line 20 def geometry_collection(name, = {}) column(name, :geometry_collection, **) end |
#line_string(name, options = {}) ⇒ Object
24 25 26 |
# File 'lib/active_record/connection_adapters/postgis/column_methods.rb', line 24 def line_string(name, = {}) column(name, :line_string, **) end |
#multi_line_string(name, options = {}) ⇒ Object
28 29 30 |
# File 'lib/active_record/connection_adapters/postgis/column_methods.rb', line 28 def multi_line_string(name, = {}) column(name, :multi_line_string, **) end |
#multi_point(name, options = {}) ⇒ Object
32 33 34 |
# File 'lib/active_record/connection_adapters/postgis/column_methods.rb', line 32 def multi_point(name, = {}) column(name, :multi_point, **) end |
#multi_polygon(name, options = {}) ⇒ Object
36 37 38 |
# File 'lib/active_record/connection_adapters/postgis/column_methods.rb', line 36 def multi_polygon(name, = {}) column(name, :multi_polygon, **) end |
#spatial(name, options = {}) ⇒ Object
7 8 9 10 |
# File 'lib/active_record/connection_adapters/postgis/column_methods.rb', line 7 def spatial(name, = {}) raise "You must set a type. For example: 't.spatial type: :st_point'" unless [:type] column(name, [:type], **) end |
#st_point(name, options = {}) ⇒ Object
40 41 42 |
# File 'lib/active_record/connection_adapters/postgis/column_methods.rb', line 40 def st_point(name, = {}) column(name, :st_point, **) end |
#st_polygon(name, options = {}) ⇒ Object
44 45 46 |
# File 'lib/active_record/connection_adapters/postgis/column_methods.rb', line 44 def st_polygon(name, = {}) column(name, :st_polygon, **) end |