Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorBenjamin Neff <benjamin@coding4coffee.ch>2021-11-23 02:56:41 +0300
committerBenjamin Neff <benjamin@coding4coffee.ch>2021-11-23 02:56:41 +0300
commit4902a359725fec716ece01a39862200b1a2c0493 (patch)
tree506dbe1225265e1bc90cb6bd91cfd414fb302f37 /db
parentd1e0b163e25cca972f8a382b7206022f3701bb90 (diff)
parenteb977dc25a45cf44db8e8ff51a84507ec2f76c54 (diff)
Merge branch 'next-minor' into develop
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20211027230348_add_remote_photo_path_to_account_migration.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/db/migrate/20211027230348_add_remote_photo_path_to_account_migration.rb b/db/migrate/20211027230348_add_remote_photo_path_to_account_migration.rb
new file mode 100644
index 000000000..291d88c95
--- /dev/null
+++ b/db/migrate/20211027230348_add_remote_photo_path_to_account_migration.rb
@@ -0,0 +1,7 @@
+# frozen_string_literal: true
+
+class AddRemotePhotoPathToAccountMigration < ActiveRecord::Migration[5.2]
+ def change
+ add_column :account_migrations, :remote_photo_path, :text
+ end
+end