aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/201805281641_create_action_text_tables.rb
blob: ed97ad46c09dbaf9912179d1c78d1a07c4ac4557 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class CreateActionTextTables < ActiveRecord::Migration[5.2]
  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.datetime :created_at, null: false
      t.datetime :updated_at, null: false

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