zoeys.computer/priv/repo/migrations/20241021042325_create_links.exs

12 lines
200 B
Elixir
Raw Normal View History

2024-10-21 13:57:31 -04:00
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