Packages

Provides an interface for reading and writing data in an Entity Component System. Note that it is up to the consuming application to implement the 'Systems' as this package simply makes working with data easier.

Current section

Files

Jump to
execs lib mix tasks execs.schema.create.ex
Raw

lib/mix/tasks/execs.schema.create.ex

defmodule Mix.Tasks.Execs.Schema.Create do
use Execs.Utils
use Mix.Task
@shortdoc "Create the schema the database that execs will use"
@doc false
def run(_) do
Application.ensure_started(:execs)
Execs.create_schema()
end
end