mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
ec8d8e5a64
- export-records: Exports all database records to external file - import-records: Imports database records from external file - import-fixtures: Fills the database with dummy records
11 lines
147 B
Python
11 lines
147 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class CommonConfig(AppConfig):
|
|
name = 'common'
|
|
|
|
def ready(self):
|
|
pass
|