zoeys.computer/priv/repo/migrations/20241021042325_create_links.exs
2024-10-21 13:57:31 -04:00

11 lines
200 B
Elixir

defmodule Zoeyscomputer.Repo.Migrations.CreateLinks do
use Ecto.Migration
def change do
create table(:links) do
add :url, :text
timestamps(type: :utc_datetime)
end
end
end