13 lines
211 B
Elixir
13 lines
211 B
Elixir
|
defmodule Clacks.Repo.Migrations.CreateUsers do
|
||
|
use Ecto.Migration
|
||
|
|
||
|
def change do
|
||
|
create table(:users) do
|
||
|
add :username, :string
|
||
|
add :private_key, :text
|
||
|
|
||
|
timestamps()
|
||
|
end
|
||
|
end
|
||
|
end
|