live_beats/priv/repo/migrations/20211117174157_add_songs_number_to_users.exs
2024-06-04 09:45:35 -04:00

16 lines
280 B
Elixir

defmodule LiveBeats.Repo.Migrations.AddSongsNumberToUsers do
use Ecto.Migration
def up do
alter table(:users) do
add :songs_count, :integer, null: false, default: 0
end
end
def down do
alter table(:users) do
remove :songs_count
end
end
end