Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support Postgres Enum #2135

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions lib/tapioca/dsl/helpers/active_record_column_type_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,11 @@ def type_for_activerecord_value(column_type, column_nullability:)
ActiveRecord::Locking::LockingType === type
}
as_non_nilable_if_persisted_and_not_nullable("::Integer", column_nullability:)
when ->(type) {
defined?(ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Enum) &&
ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Enum === type
}
"::String"
else
as_non_nilable_if_persisted_and_not_nullable(
ActiveModelTypeHelper.type_for(column_type),
Expand Down
1 change: 1 addition & 0 deletions sorbet/rbi/shims/activerecord_postgresql.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ module ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Interval; end
module ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Range; end
module ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Bit; end
module ActiveRecord::ConnectionAdapters::PostgreSQL::OID::BitVarying; end
module ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Enum; end
Loading