Class: AxHub::RawDbColumn
- Inherits:
-
Struct
- Object
- Struct
- AxHub::RawDbColumn
- Defined in:
- lib/axhub_sdk/raw_db.rb
Overview
Typed, read-only DTOs + facade for an app's raw (physical Postgres) DB, mirroring the Go SDK's client.Apps.RawDb() and the Node SDK's sdk.apps.rawDb.
Read-only: table introspection + row reads. Enabling raw DB and writing rows are separate concerns (writes go through the deployed app's DATABASE_URL, not this SDK).
Instance Attribute Summary collapse
-
#data_type ⇒ Object
Returns the value of attribute data_type.
-
#name ⇒ Object
Returns the value of attribute name.
-
#nullable ⇒ Object
Returns the value of attribute nullable.
Instance Attribute Details
#data_type ⇒ Object
Returns the value of attribute data_type
10 11 12 |
# File 'lib/axhub_sdk/raw_db.rb', line 10 def data_type @data_type end |
#name ⇒ Object
Returns the value of attribute name
10 11 12 |
# File 'lib/axhub_sdk/raw_db.rb', line 10 def name @name end |
#nullable ⇒ Object
Returns the value of attribute nullable
10 11 12 |
# File 'lib/axhub_sdk/raw_db.rb', line 10 def nullable @nullable end |