mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-14 23:21:42 +00:00
74ec630377
se llama webpacker y el logo no es un bulto!
16 lines
516 B
Ruby
16 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
|