From: Christopher Date: Thu, 19 Mar 2020 02:09:27 +0000 (-0500) Subject: adds moduledoc with create table command X-Git-Url: http://git.entropealabs.com/?a=commitdiff_plain;h=de013c16efcc1258788c9c3fed720b48506848b2;p=wampex.git adds moduledoc with create table command --- 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