You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can't seem to find a good way to drop a column in sqlite. Dropping a column with SQL is only supported in newer versions of sqlite than what some of the servers I have to work with support.
A comment in SQLiteWriter says, "In SQLite we can't change columns, drop columns, change or add foreign keys so we have a table-rebuild function."
There are functions available to do some of these things using get and put table, but I can't figure out how to drop a column. What am I missing? Any suggestions on how to do this, or is this functionality currently not available?
The text was updated successfully, but these errors were encountered:
RedBeanPHP isn't responsible for what's available or not in SQLite version and does not provide any polyfill for missing features, unless those would be fundamental for RedBean's inner workings.
I can't seem to find a good way to drop a column in sqlite. Dropping a column with SQL is only supported in newer versions of sqlite than what some of the servers I have to work with support.
A comment in SQLiteWriter says, "In SQLite we can't change columns, drop columns, change or add foreign keys so we have a table-rebuild function."
There are functions available to do some of these things using get and put table, but I can't figure out how to drop a column. What am I missing? Any suggestions on how to do this, or is this functionality currently not available?
The text was updated successfully, but these errors were encountered: