Module: Simple::SQL::Reflection
- Extended by:
- Forwardable, Reflection
- Included in:
- Reflection
- Defined in:
- lib/simple/sql/reflection.rb
Constant Summary collapse
- TIMESTAMP_COLUMN_NAMES =
%w(inserted_at created_at updated_at)
Instance Method Summary collapse
- #columns(table_name) ⇒ Object
- #primary_key_columns(table_name) ⇒ Object
- #tables(schema: "public") ⇒ Object
-
#timestamp_columns(table_name) ⇒ Object
timestamp_columns are columns that will be set automatically after inserting or updating a record.
Instance Method Details
#columns(table_name) ⇒ Object
37 38 39 |
# File 'lib/simple/sql/reflection.rb', line 37 def columns(table_name) column_info(table_name).keys end |
#primary_key_columns(table_name) ⇒ Object
15 16 17 18 19 20 21 22 23 |
# File 'lib/simple/sql/reflection.rb', line 15 def primary_key_columns(table_name) all <<~SQL, table_name SELECT pg_attribute.attname FROM pg_index JOIN pg_attribute ON pg_attribute.attrelid = pg_index.indrelid AND pg_attribute.attnum = ANY(pg_index.indkey) WHERE pg_index.indrelid = $1::regclass AND pg_index.indisprimary; SQL end |
#tables(schema: "public") ⇒ Object
11 12 13 |
# File 'lib/simple/sql/reflection.rb', line 11 def tables(schema: "public") table_info(schema: schema).keys end |
#timestamp_columns(table_name) ⇒ Object
timestamp_columns are columns that will be set automatically after inserting or updating a record. This includes:
-
inserted_at (for Ecto)
-
created_at (for ActiveRecord)
-
updated_at (for Ecto and ActiveRecord)
33 34 35 |
# File 'lib/simple/sql/reflection.rb', line 33 def (table_name) columns(table_name) & TIMESTAMP_COLUMN_NAMES end |