How do I alter column in sqlite? This is in Postgrsql
ALTER TABLE books_book ALTER COLUMN publication_date DROP NOT NULL;
I believe there is no ALTER COLUMN in sqlite at all, only ALTER TABLE is supported.
Any idea? Thanks!
|
|
|
There's no ALTER COLUMN in sqlite. I believe your only option is to:
This other Stackoverflow answer explains the process in details |
||||
|
|
|
While it is true that the is no ALTER COLUMN, if you only want to rename the column, drop the NOT NULL constraint, or change the data type, you can use the following set of dangerous commands:
You will need to either close and reopen your connection or vacuum the database to reload the changes into the schema. For example: Y:> sqlite3 booktest Y:> sqlite3 booktest REFERENCES FOLLOW: pragma schema_version [alter table](From http://www.sqlite.org/lang_altertable.html)
|
|||
|
|
SQLite supports a limited subset of ALTER TABLE. The ALTER TABLE command in SQLite allows the user to rename a table or to add a new column to an existing table. It is not possible to rename a column, remove a column, or add or remove constraints from a table. But you can alter table column datatype or other property by the following steps.
For more detail you can refer the link. |
|||
|
|
None of the other answers are incorrect but I have found the easiest way to handle complicated ALTERs is through Sqliteman (FOSS). It will handle the juggling act (as described in other answers) for you. |
|||
|
|