diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2022-10-13 11:29:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-13 11:29:19 +0200 |
commit | b04633a9614609f18b39ba0f0015df301a04ab64 (patch) | |
tree | c2cc9a8f4998e1e258f828d3d9d8db4440b10d8a /db/migrate | |
parent | 7afc6a630c76fb071bd189af3ac1366efc82f819 (diff) |
Add image processing and generate blurhash for server thumbnail (#19348)
Remove separate server hero setting
Diffstat (limited to 'db/migrate')
-rw-r--r-- | db/migrate/20221012181003_add_blurhash_to_site_uploads.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20221012181003_add_blurhash_to_site_uploads.rb b/db/migrate/20221012181003_add_blurhash_to_site_uploads.rb new file mode 100644 index 000000000..e1c87712b --- /dev/null +++ b/db/migrate/20221012181003_add_blurhash_to_site_uploads.rb @@ -0,0 +1,5 @@ +class AddBlurhashToSiteUploads < ActiveRecord::Migration[6.1] + def change + add_column :site_uploads, :blurhash, :string + end +end |