Skip to content

Instantly share code, notes, and snippets.

@ramontayag
Created August 8, 2010 08:26
Show Gist options
  • Save ramontayag/513756 to your computer and use it in GitHub Desktop.
Save ramontayag/513756 to your computer and use it in GitHub Desktop.
PGError: ERROR: column "showing_started_on" of relation "auctions" does not exist
: ALTER TABLE "auctions" DROP "showing_started_on"
=== \d auctions;
Table "public.auctions"
Column | Type | Modifiers
--------------------+-----------------------------+-------------------------------------------------------
id | integer | not null default nextval('auctions_id_seq'::regclass)
name | character varying(255) | not null
code | character varying(255) |
body | text |
showing_started_on | date |
showing_ended_on | date |
auction_started_on | date |
auction_ended_on | date |
created_at | timestamp without time zone |
updated_at | timestamp without time zone |
schedule | text |
current_started_on | date |
current_ended_on | date |
large_image_uid | character varying(255) |
image_uid | character varying(255) |
results_uid | character varying(255) |
results_ext | character varying(255) |
subname | character varying(255) |
Indexes:
"auctions_pkey" PRIMARY KEY, btree (id)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment