Change default DB to SQLite3
This commit is contained in:
@@ -15,3 +15,4 @@ node_modules/
|
|||||||
db.sqlite3
|
db.sqlite3
|
||||||
requirements_henu.txt
|
requirements_henu.txt
|
||||||
/collected_static/
|
/collected_static/
|
||||||
|
mydatabase
|
||||||
|
|||||||
@@ -68,3 +68,12 @@ TELEGRAM_BOT_TOKEN = "<BOT_TOKEN>"
|
|||||||
# },
|
# },
|
||||||
# },
|
# },
|
||||||
# }
|
# }
|
||||||
|
DATABASES = {
|
||||||
|
'default': {
|
||||||
|
'ENGINE': 'django.db.backends.sqlite3',
|
||||||
|
'NAME': 'mydatabase',
|
||||||
|
'TEST': {
|
||||||
|
'NAME': 'sik_test',
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -33,10 +33,6 @@ class Migration(migrations.Migration):
|
|||||||
],
|
],
|
||||||
bases=('webapp.presetrole',),
|
bases=('webapp.presetrole',),
|
||||||
),
|
),
|
||||||
migrations.RemoveField(
|
|
||||||
model_name='customrole',
|
|
||||||
name='baserole_ptr',
|
|
||||||
),
|
|
||||||
migrations.CreateModel(
|
migrations.CreateModel(
|
||||||
name='KaehmyForm',
|
name='KaehmyForm',
|
||||||
fields=[
|
fields=[
|
||||||
|
|||||||
Reference in New Issue
Block a user