--- id: columns title: "Columns" slug: columns custom_edit_url: https://github.com/supabase/supabase/edit/master/web/spec/postgres.yml --- import Tabs from '@theme/Tabs'; import TabsPanel from '@theme/TabsPanel'; Creating columns. ```sql create table table_name ( id integer primary key, data jsonb, name text ); ``` ## Examples ### During table creation ```sql create table table_name ( id integer primary key, data jsonb, name text ); ``` ### Create column ```sql alter table new_table add new_column text; ```