fix: move migrations to correct directory

This commit is contained in:
2026-05-13 14:42:47 +02:00
parent bb38871fd5
commit b1c7ded7ab
10 changed files with 4 additions and 2 deletions
@@ -0,0 +1,8 @@
defmodule Localiser.Repo.Migrations.RenameRoomsOffsetColumns do
use Ecto.Migration
def change do
rename table(:rooms), :offset_x, to: :x
rename table(:rooms), :offset_y, to: :y
end
end