You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
387 B
14 lines
387 B
# frozen_string_literal: true |
|
|
|
class CreatePreviewCardProviders < ActiveRecord::Migration[6.1] |
|
def change |
|
create_table :preview_card_providers do |t| |
|
t.string :domain, null: false, default: '', index: { unique: true } |
|
t.attachment :icon |
|
t.boolean :trendable |
|
t.datetime :reviewed_at |
|
t.datetime :requested_review_at |
|
t.timestamps |
|
end |
|
end |
|
end
|
|
|