mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 02:11:42 +00:00
17 lines
516 B
Ruby
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
|