about summary refs log tree commit diff
path: root/db/migrate
diff options
context:
space:
mode:
authorThibG <thib@sitedethib.com>2020-06-05 23:10:41 +0200
committerGitHub <noreply@github.com>2020-06-05 23:10:41 +0200
commit346d9b3d2eb2021b89333f1c54e8876d9a16ee24 (patch)
tree99d07943b4f2a2290b591be28f59fa4bb9fb1a1f /db/migrate
parenta415f44fd178c14bacae2812c68e6779772d06e8 (diff)
Add blurhash to preview cards (#13984)
Fixes #13001
Diffstat (limited to 'db/migrate')
-rw-r--r--db/migrate/20200605155027_add_blurhash_to_preview_cards.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20200605155027_add_blurhash_to_preview_cards.rb b/db/migrate/20200605155027_add_blurhash_to_preview_cards.rb
new file mode 100644
index 000000000..dc4b7a984
--- /dev/null
+++ b/db/migrate/20200605155027_add_blurhash_to_preview_cards.rb
@@ -0,0 +1,5 @@
+class AddBlurhashToPreviewCards < ActiveRecord::Migration[5.2]
+  def change
+    add_column :preview_cards, :blurhash, :string
+  end
+end