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.
17 lines
654 B
17 lines
654 B
# frozen_string_literal: true
|
|
|
|
class AddOEmbedToPreviewCards < ActiveRecord::Migration[5.0]
|
|
def change
|
|
change_table(:preview_cards, bulk: true) do |t|
|
|
t.column :type, :integer, default: 0, null: false
|
|
t.column :html, :text, null: false, default: ''
|
|
t.column :author_name, :string, null: false, default: ''
|
|
t.column :author_url, :string, null: false, default: ''
|
|
t.column :provider_name, :string, null: false, default: ''
|
|
t.column :provider_url, :string, null: false, default: ''
|
|
t.column :width, :integer, default: 0, null: false
|
|
t.column :height, :integer, default: 0, null: false
|
|
end
|
|
end
|
|
end
|