db/structure.sql in geoblacklight_admin-0.5.1 vs db/structure.sql in geoblacklight_admin-0.6.0

- old
+ new

@@ -347,19 +347,11 @@ encrypted_password character varying DEFAULT ''::character varying NOT NULL, reset_password_token character varying, reset_password_sent_at timestamp without time zone, remember_created_at timestamp without time zone, created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - invitation_token character varying, - invitation_created_at timestamp without time zone, - invitation_sent_at timestamp without time zone, - invitation_accepted_at timestamp without time zone, - invitation_limit integer, - invited_by_type character varying, - invited_by_id bigint, - invitations_count integer DEFAULT 0 + updated_at timestamp(6) without time zone NOT NULL ); -- -- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: - @@ -667,38 +659,9 @@ -- -- Name: index_users_on_email; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX index_users_on_email ON public.users USING btree (email); - - --- --- Name: index_users_on_invitation_token; Type: INDEX; Schema: public; Owner: - --- - -CREATE UNIQUE INDEX index_users_on_invitation_token ON public.users USING btree (invitation_token); - - --- --- Name: index_users_on_invitations_count; Type: INDEX; Schema: public; Owner: - --- - -CREATE INDEX index_users_on_invitations_count ON public.users USING btree (invitations_count); - - --- --- Name: index_users_on_invited_by_id; Type: INDEX; Schema: public; Owner: - --- - -CREATE INDEX index_users_on_invited_by_id ON public.users USING btree (invited_by_id); - - --- --- Name: index_users_on_invited_by_type_and_invited_by_id; Type: INDEX; Schema: public; Owner: - --- - -CREATE INDEX index_users_on_invited_by_type_and_invited_by_id ON public.users USING btree (invited_by_type, invited_by_id); - -- -- Name: index_users_on_reset_password_token; Type: INDEX; Schema: public; Owner: - --