5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-06-14 07:02:21 +00:00
panel/db/migrate/20190829180743_create_action_text_tables.action_text.rb

17 lines
516 B
Ruby
Raw Normal View History

# 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