13 lines
185 B
Elixir
13 lines
185 B
Elixir
|
defmodule Ketbin.Repo.Migrations.CreateUsers do
|
||
|
use Ecto.Migration
|
||
|
|
||
|
def change do
|
||
|
create table(:users) do
|
||
|
add :firebase_id, :string
|
||
|
|
||
|
timestamps()
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|