060e340558
* Adds description to media items; hooks it up to indexing/media downloading * Added a search method using postgres fulltext search * Hooked up search functionality to the search form * Added persistence to the search form when on search page
10 lines
185 B
Elixir
10 lines
185 B
Elixir
defmodule Pinchflat.Repo.Migrations.AddDescriptionToMediaItems do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
alter table(:media_items) do
|
|
add :description, :text
|
|
end
|
|
end
|
|
end
|