sutty/db/migrate/20190829180743_create_action_text_tables.action_text.rb
f 74ec630377
agregar webpacker y actiontext
se llama webpacker y el logo no es un bulto!
2019-08-30 17:47:31 -03:00

17 lines
516 B
Ruby

# 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