d547ee6f8d
Using `mix phx.new music_library --database sqlite3 --binary-id --no-mailer`
6 lines
116 B
Elixir
6 lines
116 B
Elixir
defmodule MusicLibrary.Repo do
|
|
use Ecto.Repo,
|
|
otp_app: :music_library,
|
|
adapter: Ecto.Adapters.SQLite3
|
|
end
|