From: Tom Hughes Date: Sat, 17 Mar 2012 17:14:11 +0000 (+0000) Subject: Update schema X-Git-Tag: live~5707 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/8a7a4b2ece0fd9802027f1b99ac0c6496b8c03b3?hp=a48f2ac8563759bdf366951c214d022c0528e785 Update schema --- diff --git a/db/structure.sql b/db/structure.sql index 642226eca..57a9b7211 100644 --- a/db/structure.sql +++ b/db/structure.sql @@ -100,7 +100,7 @@ CREATE TYPE user_status_enum AS ENUM ( CREATE FUNCTION maptile_for_point(bigint, bigint, integer) RETURNS integer LANGUAGE c STRICT - AS '/srv/www/markdown.osm.compton.nu/db/functions/libpgosm.so', 'maptile_for_point'; + AS '/srv/www/master.osm.compton.nu/db/functions/libpgosm.so', 'maptile_for_point'; -- @@ -109,7 +109,7 @@ CREATE FUNCTION maptile_for_point(bigint, bigint, integer) RETURNS integer CREATE FUNCTION tile_for_point(integer, integer) RETURNS bigint LANGUAGE c STRICT - AS '/srv/www/markdown.osm.compton.nu/db/functions/libpgosm.so', 'tile_for_point'; + AS '/srv/www/master.osm.compton.nu/db/functions/libpgosm.so', 'tile_for_point'; -- @@ -118,7 +118,7 @@ CREATE FUNCTION tile_for_point(integer, integer) RETURNS bigint CREATE FUNCTION xid_to_int4(xid) RETURNS integer LANGUAGE c IMMUTABLE STRICT - AS '/srv/www/markdown.osm.compton.nu/db/functions/libpgosm.so', 'xid_to_int4'; + AS '/srv/www/master.osm.compton.nu/db/functions/libpgosm.so', 'xid_to_int4'; SET default_tablespace = ''; @@ -995,11 +995,11 @@ CREATE TABLE users ( status user_status_enum DEFAULT 'pending'::user_status_enum NOT NULL, terms_agreed timestamp without time zone, consider_pd boolean DEFAULT false NOT NULL, - openid_url character varying(255), preferred_editor character varying(255), terms_seen boolean DEFAULT false NOT NULL, - description_format format_enum DEFAULT 'html'::format_enum NOT NULL, - image_fingerprint character varying(255) + openid_url character varying(255), + image_fingerprint character varying(255), + description_format format_enum DEFAULT 'html'::format_enum NOT NULL );