uploads: add upload_media_assets table.

Add a join table that allows multiple media assets (images or videos) to
be attached to uploads. This is for a future ability to upload multiple
files at once.
This commit is contained in:
evazion
2022-01-24 14:32:27 -06:00
parent a1d650848b
commit c4775d96a9
3 changed files with 97 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
# frozen_string_literal: true
class UploadMediaAsset < ApplicationRecord
belongs_to :upload
belongs_to :media_asset
end