Sha256: ae627cedf2ec0e13f0b670706c82730e2e1151994590ba0974a9ed56cfdc4e8a

Contents?: true

Size: 980 Bytes

Versions: 106

Compression:

Stored size: 980 Bytes

Contents

# This migration comes from action_text (originally 20180528164100)
class CreateActionTextTables < ActiveRecord::Migration[6.0]
  def change
    # Use Active Record's configured type for primary and foreign keys
    primary_key_type, foreign_key_type = primary_and_foreign_key_types

    create_table :action_text_rich_texts, id: primary_key_type do |t|
      t.string     :name, null: false
      t.text       :body, size: :long
      t.references :record, null: false, polymorphic: true, index: false, type: foreign_key_type

      t.timestamps

      t.index [ :record_type, :record_id, :name ], name: "index_action_text_rich_texts_uniqueness", unique: true
    end
  end

  private
    def primary_and_foreign_key_types
      config = Rails.configuration.generators
      setting = config.options[config.orm][:primary_key_type]
      primary_key_type = setting || :primary_key
      foreign_key_type = setting || :bigint
      [primary_key_type, foreign_key_type]
    end
end

Version data entries

106 entries across 106 versions & 5 rubygems

Version Path
pg_rails-7.6.23 pg_engine/db/migrate/20240614130246_create_action_text_tables.action_text.rb
pg_rails-7.6.22 pg_engine/db/migrate/20240614130246_create_action_text_tables.action_text.rb
pg_rails-7.6.22.pre.3 pg_engine/db/migrate/20240614130246_create_action_text_tables.action_text.rb
pg_rails-7.6.22.pre.2 pg_engine/db/migrate/20240614130246_create_action_text_tables.action_text.rb
pg_rails-7.6.22.pre.1 pg_engine/db/migrate/20240614130246_create_action_text_tables.action_text.rb
pg_rails-7.6.21 pg_engine/db/migrate/20240614130246_create_action_text_tables.action_text.rb
pg_rails-7.6.21.pre.11 pg_engine/db/migrate/20240614130246_create_action_text_tables.action_text.rb
pg_rails-7.6.21.pre.10 pg_engine/db/migrate/20240614130246_create_action_text_tables.action_text.rb
pg_rails-7.6.21.pre.9 pg_engine/db/migrate/20240614130246_create_action_text_tables.action_text.rb
pg_rails-7.6.21.pre.8 pg_engine/db/migrate/20240614130246_create_action_text_tables.action_text.rb
pg_rails-7.6.21.pre.7 pg_engine/db/migrate/20240614130246_create_action_text_tables.action_text.rb
pg_rails-7.6.21.pre.6 pg_engine/db/migrate/20240614130246_create_action_text_tables.action_text.rb
pg_rails-7.6.21.pre.5 pg_engine/db/migrate/20240614130246_create_action_text_tables.action_text.rb
pg_rails-7.6.21.pre.4 pg_engine/db/migrate/20240614130246_create_action_text_tables.action_text.rb
pg_rails-7.6.21.pre.3 pg_engine/db/migrate/20240614130246_create_action_text_tables.action_text.rb
pg_rails-7.6.21.pre.2 pg_engine/db/migrate/20240614130246_create_action_text_tables.action_text.rb
pg_rails-7.6.21.pre.1 pg_engine/db/migrate/20240614130246_create_action_text_tables.action_text.rb
pg_rails-7.6.20 pg_engine/db/migrate/20240614130246_create_action_text_tables.action_text.rb
pg_rails-7.6.19 pg_engine/db/migrate/20240614130246_create_action_text_tables.action_text.rb
pg_rails-7.6.18 pg_engine/db/migrate/20240614130246_create_action_text_tables.action_text.rb