Skip to content

Commit

Permalink
Skip uuidable when uuidable called before schema loaded
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikolay Kononov committed Mar 29, 2024
1 parent 6975b54 commit 63c1f37
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/uuidable/active_record.rb
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ module ClassMethods
def uuidable(as_param: true) # rubocop:disable Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity
# Configure all uuid columns for MySQL. Database may not be connected (i.e. on assets precompile), so we must supress errors.
conn_config = respond_to?(:connection_db_config) ? connection_db_config.configuration_hash : connection_config
return unless schema_loaded?

if conn_config[:adapter].include?('mysql')
begin
columns.select { |c| c.type == :binary && c.limit == 16 && c.name.include?('uuid') }.each do |column|
Expand Down

0 comments on commit 63c1f37

Please sign in to comment.