Restrict a text column to numbers create table only_numbers ( my_column text not null check (my_column ~ '^[0-9]+$') );