20230724160715_add_published_at_to_preview_cards.rb 176 B

1234567
  1. # frozen_string_literal: true
  2. class AddPublishedAtToPreviewCards < ActiveRecord::Migration[7.0]
  3. def change
  4. add_column :preview_cards, :published_at, :datetime
  5. end
  6. end