Skip to content

Commit

Permalink
Skip uuidable when uuidable called before schema loaded (#14)
Browse files Browse the repository at this point in the history
Co-authored-by: Nikolay Kononov <[email protected]>
  • Loading branch information
EeGGik and Nikolay Kononov committed Apr 10, 2024
1 parent 6975b54 commit 6cd17da
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/uuidable/active_record.rb
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +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
if conn_config[:adapter].include?('mysql')

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

0 comments on commit 6cd17da

Please sign in to comment.