rename to cannery

This commit is contained in:
2023-02-25 15:47:37 -05:00
parent bc034c0361
commit a778f5a61f
128 changed files with 999 additions and 998 deletions

View File

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

View File

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

View File

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

View File

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

View File

@ -1,4 +1,4 @@
defmodule Lokal.Repo.Migrations.RecordInvites do
defmodule Cannery.Repo.Migrations.RecordInvites 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{})
# Cannery.Repo.insert!(%Cannery.SomeSchema{})
#
# We recommend using the bang functions (`insert!`, `update!`
# and so on) as they will fail if something goes wrong.