Left out the deleting because we maybe need them for the upgrade path.

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

dawehner’s picture

Status: Active » Needs review
FileSize
3.94 KB

.

tim.plunkett’s picture

Funny, I was just wondering about killing that today as I grepped for 'position' :)
Should we drop the tables in a hook_update_N?

dawehner’s picture

FileSize
4.26 KB

He i had the same question, see initial comment :)
I guess there is no way to do the upgrade path just in d8, but we have to write something in d7
so let's drop the table.

tim.plunkett’s picture

Status: Needs review » Needs work
+++ b/views.installundefined
@@ -206,3 +107,12 @@ function views_update_8001() {
+ * Remove the {views} and {views_display} table.
+ */
+function views_update_8002() {
+  db_drop_table('views');

Shouldn't that be views_view? In both the comment and the drop.

dawehner’s picture

Status: Needs work » Needs review
FileSize
4.27 KB

You are absolutely right, this happens if you replace database with awesome sauce of config.

tim.plunkett’s picture

Status: Needs review » Reviewed & tested by the community
tim.plunkett’s picture

Status: Reviewed & tested by the community » Fixed
dawehner’s picture

Thank you! Committed and pushed

Automatically closed -- issue fixed for 2 weeks with no activity.