Sha256: a2096f251113c018105e8331469163b5e9f87567c0824f3ffec1f8241273b20a
Contents?: true
Size: 384 Bytes
Versions: 34
Compression:
Stored size: 384 Bytes
Contents
class CreateKitheDerivatives < ActiveRecord::Migration[5.2] def change create_table :kithe_derivatives do |t| t.string :key, null: false t.jsonb :file_data t.references :asset, foreign_key: {to_table: :kithe_models}, type: :uuid, index: true, null: false t.timestamps end add_index :kithe_derivatives, [:asset_id, :key], unique: true end end
Version data entries
34 entries across 34 versions & 1 rubygems