Sha256: 3451c92441dd05e92a13911ae65ee3d2d9314f2589e91b7bd5bf4e9b0c342688

Contents?: true

Size: 516 Bytes

Versions: 9

Compression:

Stored size: 516 Bytes

Contents

# frozen_string_literal: true

# This migration comes from action_text (originally 20180528164100)
class CreateActionTextTables < ActiveRecord::Migration[6.0]
  def change
    create_table :action_text_rich_texts do |t|
      t.string     :name, null: false
      t.text       :body, size: :long
      t.references :record, null: false, polymorphic: true, index: false

      t.timestamps

      t.index %i[record_type record_id name], name: 'index_action_text_rich_texts_uniqueness', unique: true
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
mobility-actiontext-1.1.1 test_app/db/migrate/20210114124022_create_action_text_tables.action_text.rb
mobility-actiontext-1.1.0 test_app/db/migrate/20210114124022_create_action_text_tables.action_text.rb
mobility-actiontext-1.0.0 test_app/db/migrate/20210114124022_create_action_text_tables.action_text.rb
mobility-actiontext-0.6.0 test_app/db/migrate/20210114124022_create_action_text_tables.action_text.rb
mobility-actiontext-0.5.0 test_app/db/migrate/20210114124022_create_action_text_tables.action_text.rb
mobility-actiontext-0.4.0 test_app/db/migrate/20210114124022_create_action_text_tables.action_text.rb
mobility-actiontext-0.3.0 test_app/db/migrate/20210114124022_create_action_text_tables.action_text.rb
mobility-actiontext-0.2.0 test_app/db/migrate/20210114124022_create_action_text_tables.action_text.rb
mobility-actiontext-0.1.0 test_app/db/migrate/20210114124022_create_action_text_tables.action_text.rb