14 lines
271 B
Elixir
14 lines
271 B
Elixir
|
defmodule Bump.Repo.Migrations.AddSenders do
|
||
|
use Ecto.Migration
|
||
|
|
||
|
def change do
|
||
|
create table :senders do
|
||
|
|
||
|
add :sender, :string, size: 255, null: false
|
||
|
add :firebase_token, :string, size: 2048
|
||
|
|
||
|
timestamps([type: :utc_datetime])
|
||
|
end
|
||
|
end
|
||
|
end
|