13 lines
208 B
Elixir
13 lines
208 B
Elixir
defmodule LinkShortener.Repo.Migrations.CreateLinks do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
create table(:links) do
|
|
add :name, :string
|
|
add :url, :string
|
|
|
|
timestamps()
|
|
end
|
|
end
|
|
end
|