postgresql - add boolean column to table set default

后端 未结 5 452
感情败类
感情败类 2021-01-30 03:02

Is this proper postgresql syntax to add a column to a table with a default value of false

ALTER TABLE users
ADD \"priv_user\" BIT
ALTER priv_user SE         


        
5条回答
  •  时光取名叫无心
    2021-01-30 03:11

    If you are using postgresql then you have to use column type BOOLEAN in lower case as boolean.

    ALTER TABLE users ADD "priv_user" boolean DEFAULT false;

提交回复
热议问题