zoeys.computer/priv/repo/migrations/20241026033548_create_gists.exs

13 lines
228 B
Elixir
Raw Normal View History

2024-10-26 15:01:33 -04:00
defmodule Zoeyscomputer.Repo.Migrations.CreateGists do
use Ecto.Migration
def change do
create table(:gists) do
add :code, :string
add :lang, :string
timestamps(type: :utc_datetime)
end
end
end