Files
webmon/priv/repo/migrations/20240118122145_create_websites.exs

13 lines
226 B
Elixir
Raw Normal View History

2024-01-20 19:10:56 +01:00
defmodule Webmon.Repo.Migrations.CreateWebsites do
use Ecto.Migration
def change do
create table(:websites) do
add :name, :string
add :url, :string
timestamps(type: :utc_datetime)
end
end
end