aboutsummaryrefslogtreecommitdiffstats
path: root/actiontext/test/dummy/db/migrate/2018052816_create_action_text_tables.rb
blob: 6e7177620f5d1e9caa062435bd30ecb18c4c528b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
class CreateActionTextTables < ActiveRecord::Migration[6.0]
  def change
    create_table :action_text_rich_texts do |t|
      t.string     :name, null: false
      t.text       :body, limit: 16777215
      t.references :record, null: false, polymorphic: true, index: false

      t.timestamps

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