From de013c16efcc1258788c9c3fed720b48506848b2 Mon Sep 17 00:00:00 2001 From: Christopher Date: Wed, 18 Mar 2020 21:09:27 -0500 Subject: [PATCH] adds moduledoc with create table command --- lib/router/authentication/realm.ex | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/router/authentication/realm.ex b/lib/router/authentication/realm.ex index e5e2ea6..0c10f0b 100644 --- a/lib/router/authentication/realm.ex +++ b/lib/router/authentication/realm.ex @@ -1,5 +1,7 @@ defmodule Wampex.Router.Authentication.Realm do - @moduledoc false + @moduledoc """ + CREATE TABLE IF NOT EXISTS authentication.realms (uri STRING PRIMARY KEY, parent STRING); + """ use Ecto.Schema @primary_key {:uri, :string, autogenerate: false, read_after_writes: true} schema "realms" do -- 2.45.3