Skip to content

Commit 5b42903

Browse files
committed
Revert "in development wordpress tables need to be managed by django models"
This reverts commit 3e8abfa.
1 parent 3e8abfa commit 5b42903

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

medios_libres/medios_libres/migrations/0003_wpcommentmeta_wpcomments_wplinks_wppostmeta_wpposts_wptermmeta_wptermrelationships_wpterms_wptermtax.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ class Migration(migrations.Migration):
2222
],
2323
options={
2424
'db_table': 'wp_commentmeta',
25+
'managed': False,
2526
},
2627
),
2728
migrations.CreateModel(
@@ -45,6 +46,7 @@ class Migration(migrations.Migration):
4546
],
4647
options={
4748
'db_table': 'wp_comments',
49+
'managed': False,
4850
},
4951
),
5052
migrations.CreateModel(
@@ -66,6 +68,7 @@ class Migration(migrations.Migration):
6668
],
6769
options={
6870
'db_table': 'wp_links',
71+
'managed': False,
6972
},
7073
),
7174
migrations.CreateModel(
@@ -78,6 +81,7 @@ class Migration(migrations.Migration):
7881
],
7982
options={
8083
'db_table': 'wp_postmeta',
84+
'managed': False,
8185
},
8286
),
8387
migrations.CreateModel(
@@ -109,6 +113,7 @@ class Migration(migrations.Migration):
109113
],
110114
options={
111115
'db_table': 'wp_posts',
116+
'managed': False,
112117
},
113118
),
114119
migrations.CreateModel(
@@ -121,6 +126,7 @@ class Migration(migrations.Migration):
121126
],
122127
options={
123128
'db_table': 'wp_termmeta',
129+
'managed': False,
124130
},
125131
),
126132
migrations.CreateModel(
@@ -132,6 +138,7 @@ class Migration(migrations.Migration):
132138
],
133139
options={
134140
'db_table': 'wp_term_relationships',
141+
'managed': False,
135142
},
136143
),
137144
migrations.CreateModel(
@@ -144,6 +151,7 @@ class Migration(migrations.Migration):
144151
],
145152
options={
146153
'db_table': 'wp_terms',
154+
'managed': False,
147155
},
148156
),
149157
migrations.CreateModel(
@@ -158,6 +166,7 @@ class Migration(migrations.Migration):
158166
],
159167
options={
160168
'db_table': 'wp_term_taxonomy',
169+
'managed': False,
161170
},
162171
),
163172
]

0 commit comments

Comments
 (0)