12 lines
174 B
Elixir
12 lines
174 B
Elixir
|
defmodule Prymn.Repo.Migrations.CreateApps do
|
||
|
use Ecto.Migration
|
||
|
|
||
|
def change do
|
||
|
create table(:apps) do
|
||
|
add :name, :string
|
||
|
|
||
|
timestamps()
|
||
|
end
|
||
|
end
|
||
|
end
|