質問編集履歴
1
ほぼすべて
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,8 +1,28 @@
|
|
1
|
-
|
1
|
+
cmdでmigrationを行い、migrationファイルの更新も確認されましたが、
|
2
|
+
|
3
|
+
削除したはずのexpirationというfieldがcouponというtableに残っているようです。
|
4
|
+
|
5
|
+
今までは問題なくできていました。また、ファイルもmigration fileをすべて削除する作業も実施しました。
|
6
|
+
|
7
|
+
よろしくお願いいたします。
|
2
8
|
|
3
9
|
|
4
10
|
|
11
|
+
```cmd
|
12
|
+
|
13
|
+
python manage.py makemigrations
|
14
|
+
|
15
|
+
python manage.py migrate
|
16
|
+
|
17
|
+
```
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
|
24
|
+
|
5
|
-
```
|
25
|
+
```models
|
6
26
|
|
7
27
|
class coupon(models.Model):
|
8
28
|
|
@@ -75,75 +95,3 @@
|
|
75
95
|
date = models.DateTimeField(default=timezone.now)
|
76
96
|
|
77
97
|
```
|
78
|
-
|
79
|
-
リレーション一覧
|
80
|
-
|
81
|
-
スキーマ | 名前 | 型 | 所有者
|
82
|
-
|
83
|
-
----------+----------------------------+----------+----------
|
84
|
-
|
85
|
-
public | auth_group | テーブル | postgres
|
86
|
-
|
87
|
-
public | auth_group_permissions | テーブル | postgres
|
88
|
-
|
89
|
-
public | auth_permission | テーブル | postgres
|
90
|
-
|
91
|
-
public | auth_user | テーブル | postgres
|
92
|
-
|
93
|
-
public | auth_user_groups | テーブル | postgres
|
94
|
-
|
95
|
-
public | auth_user_user_permissions | テーブル | postgres
|
96
|
-
|
97
|
-
public | django_admin_log | テーブル | postgres
|
98
|
-
|
99
|
-
public | django_content_type | テーブル | postgres
|
100
|
-
|
101
|
-
public | django_migrations | テーブル | postgres
|
102
|
-
|
103
|
-
public | django_session | テーブル | postgres
|
104
|
-
|
105
|
-
public | manager_coupon | テーブル | postgres
|
106
|
-
|
107
|
-
public | manager_information | テーブル | postgres
|
108
|
-
|
109
|
-
public | manager_popular | テーブル | postgres
|
110
|
-
|
111
|
-
public | manager_tweet_information | テーブル | postgres
|
112
|
-
|
113
|
-
(14 行)
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
テーブル"public.manager_coupon"
|
120
|
-
|
121
|
-
列 | 型 | 照合順序 | Null 値を許容 | デフォルト
|
122
|
-
|
123
|
-
-----------------+--------------------------+----------+---------------+--------------------------------------------
|
124
|
-
|
125
|
-
id | integer | | not null | nextval('manager_coupon_id_seq'::regclass)
|
126
|
-
|
127
|
-
coupon_content | character varying(512) | | not null |
|
128
|
-
|
129
|
-
coupon_price | character varying(512) | | not null |
|
130
|
-
|
131
|
-
coupon_category | character varying(512) | | not null |
|
132
|
-
|
133
|
-
coupon_image | character varying(512) | | not null |
|
134
|
-
|
135
|
-
normal_price | character varying(512) | | not null |
|
136
|
-
|
137
|
-
original_web | character varying(512) | | not null |
|
138
|
-
|
139
|
-
coupon_url | character varying(512) | | not null |
|
140
|
-
|
141
|
-
date | timestamp with time zone | | not null |
|
142
|
-
|
143
|
-
category | character varying(512) | | not null |
|
144
|
-
|
145
|
-
expiration | timestamp with time zone | | not null |
|
146
|
-
|
147
|
-
インデックス:
|
148
|
-
|
149
|
-
"manager_coupon_pkey" PRIMARY KEY, btree (id)
|