Module: Sequel::Plugins::PgRow::ClassMethods
- Defined in:
- lib/sequel/plugins/pg_row.rb
Instance Method Summary collapse
-
#register_row_type ⇒ Object
Register the model’s row type with the database.
Instance Method Details
#register_row_type ⇒ Object
Register the model’s row type with the database.
102 103 104 105 106 |
# File 'lib/sequel/plugins/pg_row.rb', line 102 def register_row_type table = dataset.first_source_table db.register_row_type(table, :converter=>self, :typecaster=>method(:new)) db.instance_variable_get(:@schema_type_classes)[:"pg_row_#{table}"] = self end |