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

Rails7.1: Updating Timestamp columns with precision #1161

Closed
RobBoothAppDev21 opened this issue Feb 27, 2024 · 0 comments
Closed

Rails7.1: Updating Timestamp columns with precision #1161

RobBoothAppDev21 opened this issue Feb 27, 2024 · 0 comments

Comments

@RobBoothAppDev21
Copy link
Contributor

RobBoothAppDev21 commented Feb 27, 2024

@mockdeep In the process of creating a migration to add precision: nil to the datetime columns, I noticed that the datetime columns already have the attribute precision:nil. See below.

My understanding based on this comment is that 7.0 -> 7.1 changed precision: nil from implicit to explicit in schema.rb in instances - such as stringer - where a precision value was not set.

Snippet of updated_at column from feeds table:

[
  #<ActiveRecord::ConnectionAdapters::PostgreSQL::Column:0x0000000113feb230
  @collation=nil,
  @comment=nil,
  @default=nil,
  @default_function=nil,
  @generated="",
  @identity=nil,
  @name="updated_at",
  @null=false,
  @serial=nil,
  @sql_type_metadata=
   #<ActiveRecord::ConnectionAdapters::SqlTypeMetadata:0x0000000114204ad0
    @limit=nil,
    @precision=nil,
    @scale=nil,
    @sql_type="timestamp without time zone",
    @type=:datetime>>
]

Ignore if above understanding is correct
If a migration file is needed would this be the preferred approach?

  1. Generate 1st migration - add temporary columns (e.g. updated_at_temp) for each of the datetime columns in the database. See below for first pass
  2. Rake task - create a rake task to migrate data from previous datetime columns to new ones (e.g. updated_at --> updated_at_temp)
  3. Generate 2nd migration - remove old date columns (e.g. remove_column :feed, :updated_at) and rename new columns to old name (e.g. rename_column :feeds, :updated_at_temp, :updated_at
class AddPrecisionToTimestamps < ActiveRecord::Migration[7.1]
  SKIP_TABLES = [:schema_migrations, :ar_internal_metadata].freeze

  def change
    table_names = ActiveRecord::Base.connection.tables.map(&:to_sym)
    table_names.each do |table|
      next if SKIP_TABLES.include?(table)

      ActiveRecord::Base.connection.columns(table).each do |column|
        next unless datetime_column?(column)

        add_temp_column(table, column)
      end
    end
  end

  private

  def create_temp_column_name(column)
    name = column.name
    :"#{name}_temp"
  end

  def datetime_column?(column)
    column.sql_type_metadata.type == :datetime
  end

  def add_temp_column(table, column)
    options = { precision: nil }
    options[:null] = false if ["created_at", "updated_at"].include?(column.name)
    add_column(table, create_temp_column_name(column), :datetime, options)
  end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant