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.

9 lines
434 B

  1. class AddStorageSchemaVersion < ActiveRecord::Migration[5.2]
  2. def change
  3. add_column :preview_cards, :image_storage_schema_version, :integer
  4. add_column :accounts, :avatar_storage_schema_version, :integer
  5. add_column :accounts, :header_storage_schema_version, :integer
  6. add_column :media_attachments, :file_storage_schema_version, :integer
  7. add_column :custom_emojis, :image_storage_schema_version, :integer
  8. end
  9. end