24875eaeac
* [WIP] renamed current settings module and tables to have backup suffix * Created new settings table, schema, and context * Migrated from old settings module to new one * Removed settings backup modules * Added some tests and docs
8 lines
164 B
Elixir
8 lines
164 B
Elixir
defmodule Pinchflat.Repo.Migrations.RenameSettingsTable do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
rename table(:settings), to: table(:settings_backup)
|
|
end
|
|
end
|