]> Entropealabs - wampex_router.git/commitdiff
adds moduledoc with create table command
authorChristopher <chris@entropealabs.com>
Thu, 19 Mar 2020 02:09:27 +0000 (21:09 -0500)
committerChristopher <chris@entropealabs.com>
Thu, 19 Mar 2020 02:09:27 +0000 (21:09 -0500)
lib/router/authentication/realm.ex

index e5e2ea64106237c880ef2fd51768c4c8f3442156..0c10f0b2e51ee8a8e73a711ae14eb6c6f3513988 100644 (file)
@@ -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