summaryrefslogtreecommitdiff
path: root/sql/tables/resume.states.sql
blob: b52cb577aa6d7183049985c98c3eda1c8e7baf69 (plain)
1
2
3
4
5
6
7
drop table resume.states cascade;

create table resume.states (
    id serial8 primary key,
    state character varying(255) not null,
    abbr character varying(2) not null
);