fixed edge case for pool creation

This commit is contained in:
albert
2012-05-11 15:06:40 -04:00
parent 4b22d0d458
commit 5b557a418a
4 changed files with 5 additions and 4 deletions

View File

@@ -3179,14 +3179,14 @@ CREATE TABLE user_password_reset_nonces (
created_at timestamp without time zone,
updated_at timestamp without time zone
);
ALTER TABLE public.user_password_reset_nonces OWNER TO ayi;
ALTER TABLE public.user_password_reset_nonces OWNER TO danbooru;
CREATE SEQUENCE user_password_reset_nonces_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.user_password_reset_nonces_id_seq OWNER TO ayi;
ALTER TABLE public.user_password_reset_nonces_id_seq OWNER TO danbooru;
ALTER SEQUENCE user_password_reset_nonces_id_seq OWNED BY user_password_reset_nonces.id;
ALTER TABLE user_password_reset_nonces ALTER COLUMN id SET DEFAULT nextval('user_password_reset_nonces_id_seq'::regclass);
ALTER TABLE ONLY user_password_reset_nonces