Skip to content
This repository has been archived by the owner on Jul 13, 2023. It is now read-only.

Add mysql syntax notes to migration doc #2649

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
44 changes: 44 additions & 0 deletions MIGRATING.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,8 @@ class ConvertToActiveStorage < ActiveRecord::Migration[5.2]
# get_blob_id = 'LAST_INSERT_ID()'
# sqlite
# get_blob_id = 'LAST_INSERT_ROWID()'
# mysql
# get_blob_id = '(SELECT LAST_INSERT_ID())'

active_storage_blob_statement = ActiveRecord::Base.connection.raw_connection.prepare('active_storage_blob_statement', <<-SQL)
INSERT INTO active_storage_blobs (
Expand All @@ -146,6 +148,22 @@ class ConvertToActiveStorage < ActiveRecord::Migration[5.2]
name, record_type, record_id, blob_id, created_at
) VALUES ($1, $2, $3, #{get_blob_id}, $4)
SQL

# mysql
# active_storage_blob_statement = ActiveRecord::Base.connection.raw_connection.prepare(<<-SQL
# INSERT INTO active_storage_blobs
# ( `key`, `filename`, `content_type`, `metadata`, `byte_size`, `checksum`, `created_at` )
# VALUES
# ( ?, ?, ?, '{}', ?, ?, ? )
# SQL
# )
# active_storage_attachment_statement = ActiveRecord::Base.connection.raw_connection.prepare(<<-SQL
# INSERT INTO active_storage_attachments
# ( `name`, `record_type`, `record_id`, `blob_id`, `created_at` )
# VALUES
# (?, ?, ?, #{get_blob_id}, ?)
# SQL
# )

Rails.application.eager_load!
models = ActiveRecord::Base.descendants.reject(&:abstract_class?)
Expand Down Expand Up @@ -185,6 +203,32 @@ class ConvertToActiveStorage < ActiveRecord::Migration[5.2]
instance.id,
instance.updated_at.iso8601,
])

# mysql - execute prepared statements
# begin
# active_storage_blob_statement.execute(
# key(instance, attachment),
# instance.send("#{attachment}_file_name"),
# instance.send("#{attachment}_content_type"),
# instance.send("#{attachment}_file_size"),
# checksum(instance.send(attachment)),
# instance.updated_at.iso8601
# )
# rescue Mysql2::Error => e
# 2300 is a duplicate key issue - that likely means the script was already run
# raise e unless e.sql_state == '23000'
# end
# begin
# active_storage_attachment_statement.execute(
# attachment,
# model.name,
# instance.id,
# instance.updated_at.to_s(:db)
# )
# rescue Mysql2::Error => e
# 2300 is a duplicate key issue - that likely means the script was already run
# raise e unless e.sql_state == '23000'
# end
end
end
end
Expand Down