10 lines
175 B
Elixir
10 lines
175 B
Elixir
|
defmodule RecycledCloud.Repo.Migrations.AddUserPartnerId do
|
||
|
use Ecto.Migration
|
||
|
|
||
|
def change do
|
||
|
alter table(:users) do
|
||
|
add :partner_id, :integer
|
||
|
end
|
||
|
end
|
||
|
end
|