Update database structure
This commit is contained in:
parent
0c8ad2f86e
commit
baaa67b5b1
1 changed files with 14 additions and 14 deletions
|
@ -125,7 +125,7 @@ CREATE TYPE user_status_enum AS ENUM (
|
||||||
|
|
||||||
CREATE FUNCTION maptile_for_point(bigint, bigint, integer) RETURNS integer
|
CREATE FUNCTION maptile_for_point(bigint, bigint, integer) RETURNS integer
|
||||||
LANGUAGE c STRICT
|
LANGUAGE c STRICT
|
||||||
AS '/srv/www/notes.osm.compton.nu/db/functions/libpgosm.so', 'maptile_for_point';
|
AS '/srv/www/master.osm.compton.nu/db/functions/libpgosm.so', 'maptile_for_point';
|
||||||
|
|
||||||
|
|
||||||
--
|
--
|
||||||
|
@ -134,7 +134,7 @@ CREATE FUNCTION maptile_for_point(bigint, bigint, integer) RETURNS integer
|
||||||
|
|
||||||
CREATE FUNCTION tile_for_point(integer, integer) RETURNS bigint
|
CREATE FUNCTION tile_for_point(integer, integer) RETURNS bigint
|
||||||
LANGUAGE c STRICT
|
LANGUAGE c STRICT
|
||||||
AS '/srv/www/notes.osm.compton.nu/db/functions/libpgosm.so', 'tile_for_point';
|
AS '/srv/www/master.osm.compton.nu/db/functions/libpgosm.so', 'tile_for_point';
|
||||||
|
|
||||||
|
|
||||||
--
|
--
|
||||||
|
@ -143,7 +143,7 @@ CREATE FUNCTION tile_for_point(integer, integer) RETURNS bigint
|
||||||
|
|
||||||
CREATE FUNCTION xid_to_int4(xid) RETURNS integer
|
CREATE FUNCTION xid_to_int4(xid) RETURNS integer
|
||||||
LANGUAGE c IMMUTABLE STRICT
|
LANGUAGE c IMMUTABLE STRICT
|
||||||
AS '/srv/www/notes.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 = '';
|
SET default_tablespace = '';
|
||||||
|
@ -242,8 +242,8 @@ CREATE TABLE client_applications (
|
||||||
key character varying(50),
|
key character varying(50),
|
||||||
secret character varying(50),
|
secret character varying(50),
|
||||||
user_id integer,
|
user_id integer,
|
||||||
created_at timestamp without time zone NOT NULL,
|
created_at timestamp without time zone,
|
||||||
updated_at timestamp without time zone NOT NULL,
|
updated_at timestamp without time zone,
|
||||||
allow_read_prefs boolean DEFAULT false NOT NULL,
|
allow_read_prefs boolean DEFAULT false NOT NULL,
|
||||||
allow_write_prefs boolean DEFAULT false NOT NULL,
|
allow_write_prefs boolean DEFAULT false NOT NULL,
|
||||||
allow_write_diary boolean DEFAULT false NOT NULL,
|
allow_write_diary boolean DEFAULT false NOT NULL,
|
||||||
|
@ -803,8 +803,8 @@ CREATE TABLE oauth_nonces (
|
||||||
id integer NOT NULL,
|
id integer NOT NULL,
|
||||||
nonce character varying(255),
|
nonce character varying(255),
|
||||||
"timestamp" integer,
|
"timestamp" integer,
|
||||||
created_at timestamp without time zone NOT NULL,
|
created_at timestamp without time zone,
|
||||||
updated_at timestamp without time zone NOT NULL
|
updated_at timestamp without time zone
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
|
@ -840,8 +840,8 @@ CREATE TABLE oauth_tokens (
|
||||||
secret character varying(50),
|
secret character varying(50),
|
||||||
authorized_at timestamp without time zone,
|
authorized_at timestamp without time zone,
|
||||||
invalidated_at timestamp without time zone,
|
invalidated_at timestamp without time zone,
|
||||||
created_at timestamp without time zone NOT NULL,
|
created_at timestamp without time zone,
|
||||||
updated_at timestamp without time zone NOT NULL,
|
updated_at timestamp without time zone,
|
||||||
allow_read_prefs boolean DEFAULT false NOT NULL,
|
allow_read_prefs boolean DEFAULT false NOT NULL,
|
||||||
allow_write_prefs boolean DEFAULT false NOT NULL,
|
allow_write_prefs boolean DEFAULT false NOT NULL,
|
||||||
allow_write_diary boolean DEFAULT false NOT NULL,
|
allow_write_diary boolean DEFAULT false NOT NULL,
|
||||||
|
@ -970,8 +970,8 @@ CREATE TABLE user_blocks (
|
||||||
ends_at timestamp without time zone NOT NULL,
|
ends_at timestamp without time zone NOT NULL,
|
||||||
needs_view boolean DEFAULT false NOT NULL,
|
needs_view boolean DEFAULT false NOT NULL,
|
||||||
revoker_id bigint,
|
revoker_id bigint,
|
||||||
created_at timestamp without time zone NOT NULL,
|
created_at timestamp without time zone,
|
||||||
updated_at timestamp without time zone NOT NULL,
|
updated_at timestamp without time zone,
|
||||||
reason_format format_enum DEFAULT 'html'::format_enum NOT NULL
|
reason_format format_enum DEFAULT 'html'::format_enum NOT NULL
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -1013,8 +1013,8 @@ CREATE TABLE user_preferences (
|
||||||
CREATE TABLE user_roles (
|
CREATE TABLE user_roles (
|
||||||
id integer NOT NULL,
|
id integer NOT NULL,
|
||||||
user_id bigint NOT NULL,
|
user_id bigint NOT NULL,
|
||||||
created_at timestamp without time zone NOT NULL,
|
created_at timestamp without time zone,
|
||||||
updated_at timestamp without time zone NOT NULL,
|
updated_at timestamp without time zone,
|
||||||
role user_role_enum NOT NULL,
|
role user_role_enum NOT NULL,
|
||||||
granter_id bigint NOT NULL
|
granter_id bigint NOT NULL
|
||||||
);
|
);
|
||||||
|
@ -1096,9 +1096,9 @@ CREATE TABLE users (
|
||||||
status user_status_enum DEFAULT 'pending'::user_status_enum NOT NULL,
|
status user_status_enum DEFAULT 'pending'::user_status_enum NOT NULL,
|
||||||
terms_agreed timestamp without time zone,
|
terms_agreed timestamp without time zone,
|
||||||
consider_pd boolean DEFAULT false NOT NULL,
|
consider_pd boolean DEFAULT false NOT NULL,
|
||||||
openid_url character varying(255),
|
|
||||||
preferred_editor character varying(255),
|
preferred_editor character varying(255),
|
||||||
terms_seen boolean DEFAULT false NOT NULL,
|
terms_seen boolean DEFAULT false NOT NULL,
|
||||||
|
openid_url character varying(255),
|
||||||
description_format format_enum DEFAULT 'html'::format_enum NOT NULL,
|
description_format format_enum DEFAULT 'html'::format_enum NOT NULL,
|
||||||
image_fingerprint character varying(255),
|
image_fingerprint character varying(255),
|
||||||
changesets_count integer DEFAULT 0 NOT NULL,
|
changesets_count integer DEFAULT 0 NOT NULL,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue