Skip to content

Instantly share code, notes, and snippets.

@SidneyAllen
Last active September 21, 2021 20:21
Show Gist options
  • Save SidneyAllen/778e2a227cb0169a61226cecb1606d46 to your computer and use it in GitHub Desktop.
Save SidneyAllen/778e2a227cb0169a61226cecb1606d46 to your computer and use it in GitHub Desktop.
av-bulk-blog-create-postgres-table
CREATE TABLE addresses(
id SERIAL PRIMARY KEY,
name VARCHAR(100),
primary_line VARCHAR(100),
secondary_line VARCHAR(100),
city VARCHAR(100),
state VARCHAR(100),
zip_code INTEGER
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment