12 lines
200 B
Elixir
12 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
|