6 lines
111 B
Elixir
6 lines
111 B
Elixir
|
|
defmodule Simpleshop.Repo do
|
||
|
|
use Ecto.Repo,
|
||
|
|
otp_app: :simpleshop,
|
||
|
|
adapter: Ecto.Adapters.SQLite3
|
||
|
|
end
|