rename to memex

This commit is contained in:
2022-07-25 19:31:54 -04:00
parent 65ec4286da
commit 1a423f703b
122 changed files with 416 additions and 416 deletions

View File

@ -1,4 +1,4 @@
defmodule Lokal.Repo.Migrations.CreateUsersAuthTables do
defmodule Memex.Repo.Migrations.CreateUsersAuthTables do
use Ecto.Migration
def change do

View File

@ -1,4 +1,4 @@
defmodule Lokal.Repo.Migrations.CreateInvites do
defmodule Memex.Repo.Migrations.CreateInvites do
use Ecto.Migration
def change do

View File

@ -1,4 +1,4 @@
defmodule Lokal.Repo.Migrations.AddOban do
defmodule Memex.Repo.Migrations.AddOban do
use Ecto.Migration
def up do

View File

@ -1,4 +1,4 @@
defmodule Lokal.Repo.Migrations.AddLocaleSetting do
defmodule Memex.Repo.Migrations.AddLocaleSetting do
use Ecto.Migration
def change do

View File

@ -5,7 +5,7 @@
# Inside the script, you can read and write to any of your
# repositories directly:
#
# Lokal.Repo.insert!(%Lokal.SomeSchema{})
# Memex.Repo.insert!(%Memex.SomeSchema{})
#
# We recommend using the bang functions (`insert!`, `update!`
# and so on) as they will fail if something goes wrong.