Allow renaming of views

Issue #300 resolved
Christopher Kramer created an issue

It is currently possible to rename tables, but not views. It seems that SQLite does not support it. Tables are renamed with ALTER TABLE, but there is no ALTER VIEW, so renaming must be done by dropping and recreating the view. But this should be easy to implement.

Comments (3)

  1. phpLiteAdmin repo owner
    • Views can now be renamed via GUI (using ALTER TABLE workaround). This fixes issue #300.
    • When renaming tables or views, the field for the new name is now prefilled with the old name. (When renaming databases, this has already been the case before.)

    → <<cset ced20e7ccd05>>

  2. Log in to comment