logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe git clone https://hacktivis.me/git/mastofe.git

20170425202925_add_oembed_to_preview_cards.rb (691B)


  1. class AddOEmbedToPreviewCards < ActiveRecord::Migration[5.0]
  2. def change
  3. add_column :preview_cards, :type, :integer, default: 0, null: false
  4. add_column :preview_cards, :html, :text, null: false, default: ''
  5. add_column :preview_cards, :author_name, :string, null: false, default: ''
  6. add_column :preview_cards, :author_url, :string, null: false, default: ''
  7. add_column :preview_cards, :provider_name, :string, null: false, default: ''
  8. add_column :preview_cards, :provider_url, :string, null: false, default: ''
  9. add_column :preview_cards, :width, :integer, default: 0, null: false
  10. add_column :preview_cards, :height, :integer, default: 0, null: false
  11. end
  12. end