f6708a327c
* Started adding youtube API for fast indexing * Hooked youtube API into fast indexing * Added youtube_api_key to settings * Added youtube api key to settings UI * Added tests * Refactored the youtube api module * More refactor * Changed editing mode name from basic to standard * [WIP] started on copy changes * Updated copy
10 lines
185 B
Elixir
10 lines
185 B
Elixir
defmodule Pinchflat.Repo.Migrations.AddYoutubeApiKeySetting do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
alter table(:settings) do
|
|
add :youtube_api_key, :string
|
|
end
|
|
end
|
|
end
|