Update migrations
This commit is contained in:
parent
50abfe4748
commit
57efda7638
12 changed files with 56 additions and 35 deletions
15
priv/repo/migrations/20250615131800_create_bookmarks.exs
Normal file
15
priv/repo/migrations/20250615131800_create_bookmarks.exs
Normal file
|
@ -0,0 +1,15 @@
|
|||
defmodule Nulla.Repo.Migrations.CreateBookmarks do
|
||||
use Ecto.Migration
|
||||
|
||||
def change do
|
||||
create table(:bookmarks, primary_key: false) do
|
||||
add :id, :bigint, primary_key: true
|
||||
add :url, :string
|
||||
add :user_id, references(:users, on_delete: :delete_all)
|
||||
|
||||
timestamps(type: :utc_datetime)
|
||||
end
|
||||
|
||||
create index(:bookmarks, [:user_id])
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue