live_beats/priv/repo/migrations/20230126132130_add_position_to_songs.exs

10 lines
196 B
Elixir
Raw Normal View History

2023-01-26 19:05:24 +00:00
defmodule LiveBeats.Repo.Migrations.AddPositionToSongs do
use Ecto.Migration
def change do
alter table(:songs) do
add :position, :integer, null: false, default: 0
end
end
end