0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Django テーブルを削除する

Posted at

不要となったテーブルを削除

makemigrationsで、No changes detectedと表示されることを確認。

# python manage.py makemigrations
No changes detected

マイグレーション履歴を確認

# python manage.py showmigrations
app
 [X] 0001_initial

マイグレーション履歴を削除

# python manage.py migrate --fake app zero
Operations to perform:
  Unapply all migrations: app
Running migrations:
  Rendering model states... DONE
  Unapplying app.0001_initial... FAKED

マイグレーション履歴が削除されると[X]が[ ]になる。

# python manage.py showmigrations
app
 [ ] 0001_initial

[ ]になったことを確認できたら、
migrationsディレクトリの中の、__init__.py以外を削除。

DB接続してテーブルを削除する。

# python manage.py dbshell
sqlite> .tables
app_test  ←削除したいテーブル
sqlite> DROP TABLE app_test;
sqlite> .quit

models.pyとadmin.pyに削除したテーブルに関する記述があれば削除する。

以上です。

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?