Skip to content

Commit 0319361

Browse files
committed
Disabled automatic creation of table on run
1 parent 780df90 commit 0319361

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

grace/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
__version__ = "1.0.4-alpha"
1+
__version__ = "1.0.5-alpha"
22

33
from discord.ext.commands import *

grace/cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def create(ctx):
9292
return warning("Database already exists")
9393

9494
app.create_database()
95-
app.create_tables()
95+
# app.create_tables()
9696

9797

9898
@db.command()
@@ -147,7 +147,7 @@ def down(ctx, revision):
147147
def _load_database(app):
148148
if not app.database_exists:
149149
app.create_database()
150-
app.create_tables()
150+
# app.create_tables()
151151

152152

153153
def _show_application_info(app):

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = ["setuptools>=64", "setuptools_scm>=8"]
33

44
[project]
55
name = "grace-framework"
6-
version = "1.0.4-alpha"
6+
version = "1.0.5-alpha"
77
authors = [
88
{ name="Simon Roy" }
99
]

0 commit comments

Comments
 (0)