diff options
| author | Lain Soykaf <lain@lain.com> | 2024-05-27 17:49:31 +0400 |
|---|---|---|
| committer | Lain Soykaf <lain@lain.com> | 2024-05-27 17:49:31 +0400 |
| commit | 4325b1aec34734d8efbc7701d6bfdcf157e7cb0d (patch) | |
| tree | 7995ee0c521da831709f1198ca7154fad0885306 /priv/repo/migrations/20220807125023_data_migration_delete_context_objects.exs | |
| parent | 3a03d9b65f96099e7c7a831469532c2cec7294c6 (diff) | |
| parent | 6757382abec9ca47a9025b8bed61047414cee20f (diff) | |
| download | pleroma-4325b1aec34734d8efbc7701d6bfdcf157e7cb0d.tar.gz pleroma-4325b1aec34734d8efbc7701d6bfdcf157e7cb0d.zip | |
Merge branch 'develop' of git.pleroma.social:pleroma/pleroma into nsfw-api-mrf
Diffstat (limited to 'priv/repo/migrations/20220807125023_data_migration_delete_context_objects.exs')
| -rw-r--r-- | priv/repo/migrations/20220807125023_data_migration_delete_context_objects.exs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/priv/repo/migrations/20220807125023_data_migration_delete_context_objects.exs b/priv/repo/migrations/20220807125023_data_migration_delete_context_objects.exs new file mode 100644 index 000000000..84365dbe3 --- /dev/null +++ b/priv/repo/migrations/20220807125023_data_migration_delete_context_objects.exs @@ -0,0 +1,18 @@ +defmodule Pleroma.Repo.Migrations.DataMigrationDeleteContextObjects do + use Ecto.Migration + + require Logger + + def up do + dt = NaiveDateTime.utc_now() + + execute( + "INSERT INTO data_migrations(name, inserted_at, updated_at) " <> + "VALUES ('delete_context_objects', '#{dt}', '#{dt}') ON CONFLICT DO NOTHING;" + ) + end + + def down do + execute("DELETE FROM data_migrations WHERE name = 'delete_context_objects';") + end +end |
