diff --git a/app/controllers/tag_aliases_controller.rb b/app/controllers/tag_aliases_controller.rb index 248d22da6..9bd339a2e 100644 --- a/app/controllers/tag_aliases_controller.rb +++ b/app/controllers/tag_aliases_controller.rb @@ -43,9 +43,7 @@ class TagAliasesController < ApplicationController def approve @tag_alias = TagAlias.find(params[:id]) - @tag_alias.update_column(:status, "queued") - @tag_alias.rename_wiki_and_artist - @tag_alias.delay(:queue => "default").process!(true, CurrentUser.id) + @tag_alias.approve!(CurrentUser.user.id) respond_with(@tag_alias, :location => tag_alias_path(@tag_alias)) end end diff --git a/app/controllers/tag_implications_controller.rb b/app/controllers/tag_implications_controller.rb index e8c2e4dac..a5cfafc68 100644 --- a/app/controllers/tag_implications_controller.rb +++ b/app/controllers/tag_implications_controller.rb @@ -48,8 +48,7 @@ class TagImplicationsController < ApplicationController def approve @tag_implication = TagImplication.find(params[:id]) - @tag_implication.update_column(:status, "queued") - @tag_implication.delay(:queue => "default").process!(true, CurrentUser.id) + @tag_implication.approve!(CurrentUser.user.id) respond_with(@tag_implication, :location => tag_implication_path(@tag_implication)) end end diff --git a/app/models/bulk_update_request.rb b/app/models/bulk_update_request.rb index cdb89f01c..005d1fa4b 100644 --- a/app/models/bulk_update_request.rb +++ b/app/models/bulk_update_request.rb @@ -3,6 +3,7 @@ class BulkUpdateRequest < ActiveRecord::Base belongs_to :user belongs_to :forum_topic + belongs_to :approver, :class_name => "User" validates_presence_of :user validates_presence_of :script @@ -12,7 +13,7 @@ class BulkUpdateRequest < ActiveRecord::Base validate :forum_topic_id_not_invalid validate :validate_script attr_accessible :user_id, :forum_topic_id, :script, :title, :reason, :skip_secondary_validations - attr_accessible :status, :as => [:admin] + attr_accessible :status, :approver_id, :as => [:admin] before_validation :initialize_attributes, :on => :create before_validation :normalize_text after_create :create_forum_topic @@ -34,16 +35,15 @@ class BulkUpdateRequest < ActiveRecord::Base def approve! AliasAndImplicationImporter.new(script, forum_topic_id, "1", true).process! + update_columns(:status => "approved", :approver_id => CurrentUser.user.id) update_forum_topic_for_approve - update_attribute(:status, "approved") rescue Exception => x - message_admin_on_failure(x) + message_approver_on_failure(x) update_topic_on_failure(x) end - def message_admin_on_failure(x) - admin = User.admins.first + def message_approver_on_failure(x) msg = <<-EOS Bulk Update Request ##{id} failed\n Exception: #{x.class}\n @@ -56,13 +56,13 @@ class BulkUpdateRequest < ActiveRecord::Base end dmail = Dmail.new( - :from_id => admin.id, - :to_id => admin.id, - :owner_id => admin.id, + :from_id => approver.id, + :to_id => approver.id, + :owner_id => approver.id, :title => "Bulk update request approval failed", :body => msg ) - dmail.owner_id = admin.id + dmail.owner_id = approver.id dmail.save end diff --git a/app/models/tag_alias.rb b/app/models/tag_alias.rb index 2bfe76cb5..eb838ee45 100644 --- a/app/models/tag_alias.rb +++ b/app/models/tag_alias.rb @@ -13,6 +13,7 @@ class TagAlias < ActiveRecord::Base validate :consequent_has_wiki_page, :on => :create validate :mininum_antecedent_count, :on => :create belongs_to :creator, :class_name => "User" + belongs_to :approver, :class_name => "User" belongs_to :forum_topic attr_accessible :antecedent_name, :consequent_name, :forum_topic_id, :status, :skip_secondary_validations @@ -81,7 +82,16 @@ class TagAlias < ActiveRecord::Base end.uniq end - def process!(update_topic=true, approver_id = nil) + def approve!(approver_id) + self.status = "queued" + self.approver_id = approver_id + save + + rename_wiki_and_artist + delay(:queue => "default").process!(true) + end + + def process!(update_topic=true) unless valid? raise errors.full_messages.join("; ") end @@ -89,7 +99,7 @@ class TagAlias < ActiveRecord::Base tries = 0 begin - admin = CurrentUser.user || User.where(id: approver_id).first || User.admins.first + admin = CurrentUser.user || approver || User.admins.first CurrentUser.scoped(admin, "127.0.0.1") do update_column(:status, "processing") move_aliases_and_implications diff --git a/app/models/tag_implication.rb b/app/models/tag_implication.rb index b185c4582..58aa90aff 100644 --- a/app/models/tag_implication.rb +++ b/app/models/tag_implication.rb @@ -5,6 +5,7 @@ class TagImplication < ActiveRecord::Base after_save :update_descendant_names_for_parents after_destroy :update_descendant_names_for_parents belongs_to :creator, :class_name => "User" + belongs_to :approver, :class_name => "User" belongs_to :forum_topic before_validation :initialize_creator, :on => :create before_validation :normalize_names @@ -123,7 +124,7 @@ class TagImplication < ActiveRecord::Base self.creator_ip_addr = CurrentUser.ip_addr end - def process!(update_topic=true, approver_id=nil) + def process!(update_topic=true) unless valid? raise errors.full_messages.join("; ") end @@ -131,7 +132,7 @@ class TagImplication < ActiveRecord::Base tries = 0 begin - admin = CurrentUser.user || User.where(id: approver_id).first || User.admins.first + admin = CurrentUser.user || approver || User.admins.first CurrentUser.scoped(admin, "127.0.0.1") do update_column(:status, "processing") update_posts @@ -273,6 +274,13 @@ class TagImplication < ActiveRecord::Base end end + def approve!(approver_id) + self.status = "queued" + self.approver_id = approver_id + save + delay(:queue => "default").process!(true) + end + def reject! update_forum_topic_for_reject destroy diff --git a/app/views/bulk_update_requests/_listing.html.erb b/app/views/bulk_update_requests/_listing.html.erb index 838a3e3e4..3705d852c 100644 --- a/app/views/bulk_update_requests/_listing.html.erb +++ b/app/views/bulk_update_requests/_listing.html.erb @@ -2,6 +2,7 @@ Creator + Approver Forum Script Status @@ -12,6 +13,7 @@ <% bulk_update_requests.each do |request| %> <%= link_to_user(request.user) %> + <% if request.approver %><%= link_to_user(request.approver) %><% end %> <%= link_to(request.forum_topic_id, forum_topic_path(request.forum_topic_id)) %> <%= script_with_line_breaks(request.script) %> <%= request.status %> diff --git a/app/views/tag_aliases/_listing.html.erb b/app/views/tag_aliases/_listing.html.erb index 31183dd33..354c1bb20 100644 --- a/app/views/tag_aliases/_listing.html.erb +++ b/app/views/tag_aliases/_listing.html.erb @@ -1,11 +1,12 @@ - - + + - - + + + @@ -18,6 +19,7 @@ <%= link_to tag_alias.forum_topic_id, forum_topic_path(tag_alias.forum_topic_id) %> <% end %> + diff --git a/app/views/tag_implications/_listing.html.erb b/app/views/tag_implications/_listing.html.erb index ffe0006da..7a877ce75 100644 --- a/app/views/tag_implications/_listing.html.erb +++ b/app/views/tag_implications/_listing.html.erb @@ -1,10 +1,11 @@
FromToFromTo ReferenceStatusApproverStatus
<%= link_to_user(tag_alias.approver) if tag_alias.approver %> <%= tag_alias.status %>
- - + + - + + @@ -18,6 +19,7 @@ <%= link_to tag_implication.forum_topic_id, forum_topic_path(tag_implication.forum_topic_id) %> <% end %> +
FromToFromTo ReferenceStatusApproverStatus
<%= link_to_user(tag_implication.approver) if tag_implication.approver %> <%= tag_implication.status %> <%= link_to "Show", tag_implication_path(tag_implication) %> diff --git a/db/migrate/20160526174848_add_approver_id.rb b/db/migrate/20160526174848_add_approver_id.rb new file mode 100644 index 000000000..c3311746b --- /dev/null +++ b/db/migrate/20160526174848_add_approver_id.rb @@ -0,0 +1,7 @@ +class AddApproverId < ActiveRecord::Migration + def change + add_column :bulk_update_requests, :approver_id, :integer + add_column :tag_aliases, :approver_id, :integer + add_column :tag_implications, :approver_id, :integer + end +end diff --git a/db/structure.sql b/db/structure.sql index 262fb71ba..c6c22e5c8 100644 --- a/db/structure.sql +++ b/db/structure.sql @@ -2,11 +2,16 @@ -- PostgreSQL database dump -- +-- Dumped from database version 9.5.1 +-- Dumped by pg_dump version 9.5.1 + SET statement_timeout = 0; +SET lock_timeout = 0; SET client_encoding = 'UTF8'; SET standard_conforming_strings = on; SET check_function_bodies = false; SET client_min_messages = warning; +SET row_security = off; -- -- Name: plpgsql; Type: EXTENSION; Schema: -; Owner: - @@ -428,15 +433,15 @@ SET default_tablespace = ''; SET default_with_oids = false; -- --- Name: advertisement_hits; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: advertisement_hits; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE advertisement_hits ( id integer NOT NULL, advertisement_id integer NOT NULL, ip_addr inet NOT NULL, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL + created_at timestamp without time zone, + updated_at timestamp without time zone ); @@ -460,21 +465,21 @@ ALTER SEQUENCE advertisement_hits_id_seq OWNED BY advertisement_hits.id; -- --- Name: advertisements; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: advertisements; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE advertisements ( id integer NOT NULL, referral_url text NOT NULL, - ad_type character varying(255) NOT NULL, - status character varying(255) NOT NULL, + ad_type character varying NOT NULL, + status character varying NOT NULL, hit_count integer DEFAULT 0 NOT NULL, width integer NOT NULL, height integer NOT NULL, - file_name character varying(255) NOT NULL, + file_name character varying NOT NULL, is_work_safe boolean DEFAULT false NOT NULL, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL + created_at timestamp without time zone, + updated_at timestamp without time zone ); @@ -498,14 +503,14 @@ ALTER SEQUENCE advertisements_id_seq OWNED BY advertisements.id; -- --- Name: amazon_backups; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: amazon_backups; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE amazon_backups ( id integer NOT NULL, last_id integer, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL + created_at timestamp without time zone, + updated_at timestamp without time zone ); @@ -529,13 +534,13 @@ ALTER SEQUENCE amazon_backups_id_seq OWNED BY amazon_backups.id; -- --- Name: api_keys; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: api_keys; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE api_keys ( id integer NOT NULL, user_id integer NOT NULL, - key character varying(255) NOT NULL, + key character varying NOT NULL, created_at timestamp without time zone, updated_at timestamp without time zone ); @@ -561,7 +566,7 @@ ALTER SEQUENCE api_keys_id_seq OWNED BY api_keys.id; -- --- Name: artist_commentaries; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: artist_commentaries; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE artist_commentaries ( @@ -571,8 +576,8 @@ CREATE TABLE artist_commentaries ( original_description text, translated_title text, translated_description text, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL + created_at timestamp without time zone, + updated_at timestamp without time zone ); @@ -596,7 +601,7 @@ ALTER SEQUENCE artist_commentaries_id_seq OWNED BY artist_commentaries.id; -- --- Name: artist_commentary_versions; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: artist_commentary_versions; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE artist_commentary_versions ( @@ -608,8 +613,8 @@ CREATE TABLE artist_commentary_versions ( original_description text, translated_title text, translated_description text, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL + created_at timestamp without time zone, + updated_at timestamp without time zone ); @@ -633,7 +638,7 @@ ALTER SEQUENCE artist_commentary_versions_id_seq OWNED BY artist_commentary_vers -- --- Name: artist_urls; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: artist_urls; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE artist_urls ( @@ -641,8 +646,8 @@ CREATE TABLE artist_urls ( artist_id integer NOT NULL, url text NOT NULL, normalized_url text NOT NULL, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL + created_at timestamp without time zone, + updated_at timestamp without time zone ); @@ -666,22 +671,22 @@ ALTER SEQUENCE artist_urls_id_seq OWNED BY artist_urls.id; -- --- Name: artist_versions; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: artist_versions; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE artist_versions ( id integer NOT NULL, artist_id integer NOT NULL, - name character varying(255) NOT NULL, + name character varying NOT NULL, updater_id integer NOT NULL, updater_ip_addr inet NOT NULL, is_active boolean DEFAULT true NOT NULL, other_names text, - group_name character varying(255), + group_name character varying, url_string text, is_banned boolean DEFAULT false NOT NULL, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL + created_at timestamp without time zone, + updated_at timestamp without time zone ); @@ -705,20 +710,20 @@ ALTER SEQUENCE artist_versions_id_seq OWNED BY artist_versions.id; -- --- Name: artists; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: artists; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE artists ( id integer NOT NULL, - name character varying(255) NOT NULL, + name character varying NOT NULL, creator_id integer NOT NULL, is_active boolean DEFAULT true NOT NULL, is_banned boolean DEFAULT false NOT NULL, other_names text, other_names_index tsvector, - group_name character varying(255), - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL + group_name character varying, + created_at timestamp without time zone, + updated_at timestamp without time zone ); @@ -742,7 +747,7 @@ ALTER SEQUENCE artists_id_seq OWNED BY artists.id; -- --- Name: bans; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: bans; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE bans ( @@ -751,8 +756,8 @@ CREATE TABLE bans ( reason text NOT NULL, banner_id integer NOT NULL, expires_at timestamp without time zone NOT NULL, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL + created_at timestamp without time zone, + updated_at timestamp without time zone ); @@ -776,7 +781,7 @@ ALTER SEQUENCE bans_id_seq OWNED BY bans.id; -- --- Name: bulk_update_requests; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: bulk_update_requests; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE bulk_update_requests ( @@ -784,9 +789,10 @@ CREATE TABLE bulk_update_requests ( user_id integer NOT NULL, forum_topic_id integer, script text NOT NULL, - status character varying(255) DEFAULT 'pending'::character varying NOT NULL, + status character varying DEFAULT 'pending'::character varying NOT NULL, created_at timestamp without time zone, - updated_at timestamp without time zone + updated_at timestamp without time zone, + approver_id integer ); @@ -810,7 +816,7 @@ ALTER SEQUENCE bulk_update_requests_id_seq OWNED BY bulk_update_requests.id; -- --- Name: comment_votes; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: comment_votes; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE comment_votes ( @@ -818,8 +824,8 @@ CREATE TABLE comment_votes ( comment_id integer NOT NULL, user_id integer NOT NULL, score integer NOT NULL, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL + created_at timestamp without time zone, + updated_at timestamp without time zone ); @@ -843,7 +849,7 @@ ALTER SEQUENCE comment_votes_id_seq OWNED BY comment_votes.id; -- --- Name: comments; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: comments; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE comments ( @@ -854,8 +860,8 @@ CREATE TABLE comments ( ip_addr inet NOT NULL, body_index tsvector NOT NULL, score integer DEFAULT 0 NOT NULL, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, + created_at timestamp without time zone, + updated_at timestamp without time zone, updater_id integer, updater_ip_addr inet, do_not_bump_post boolean DEFAULT false NOT NULL, @@ -883,7 +889,7 @@ ALTER SEQUENCE comments_id_seq OWNED BY comments.id; -- --- Name: delayed_jobs; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: delayed_jobs; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE delayed_jobs ( @@ -895,10 +901,10 @@ CREATE TABLE delayed_jobs ( run_at timestamp without time zone, locked_at timestamp without time zone, failed_at timestamp without time zone, - locked_by character varying(255), - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - queue character varying(255) + locked_by character varying, + created_at timestamp without time zone, + updated_at timestamp without time zone, + queue character varying ); @@ -922,7 +928,7 @@ ALTER SEQUENCE delayed_jobs_id_seq OWNED BY delayed_jobs.id; -- --- Name: dmail_filters; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: dmail_filters; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE dmail_filters ( @@ -954,7 +960,7 @@ ALTER SEQUENCE dmail_filters_id_seq OWNED BY dmail_filters.id; -- --- Name: dmails; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: dmails; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE dmails ( @@ -967,8 +973,8 @@ CREATE TABLE dmails ( message_index tsvector NOT NULL, is_read boolean DEFAULT false NOT NULL, is_deleted boolean DEFAULT false NOT NULL, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, + created_at timestamp without time zone, + updated_at timestamp without time zone, creator_ip_addr inet DEFAULT '127.0.0.1'::inet NOT NULL ); @@ -993,7 +999,7 @@ ALTER SEQUENCE dmails_id_seq OWNED BY dmails.id; -- --- Name: favorite_groups; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorite_groups; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorite_groups ( @@ -1027,7 +1033,7 @@ ALTER SEQUENCE favorite_groups_id_seq OWNED BY favorite_groups.id; -- --- Name: favorites; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites ( @@ -1038,7 +1044,7 @@ CREATE TABLE favorites ( -- --- Name: favorites_0; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_0; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_0 ( @@ -1048,7 +1054,7 @@ INHERITS (favorites); -- --- Name: favorites_1; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_1; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_1 ( @@ -1058,7 +1064,7 @@ INHERITS (favorites); -- --- Name: favorites_10; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_10; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_10 ( @@ -1068,7 +1074,7 @@ INHERITS (favorites); -- --- Name: favorites_11; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_11; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_11 ( @@ -1078,7 +1084,7 @@ INHERITS (favorites); -- --- Name: favorites_12; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_12; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_12 ( @@ -1088,7 +1094,7 @@ INHERITS (favorites); -- --- Name: favorites_13; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_13; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_13 ( @@ -1098,7 +1104,7 @@ INHERITS (favorites); -- --- Name: favorites_14; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_14; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_14 ( @@ -1108,7 +1114,7 @@ INHERITS (favorites); -- --- Name: favorites_15; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_15; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_15 ( @@ -1118,7 +1124,7 @@ INHERITS (favorites); -- --- Name: favorites_16; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_16; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_16 ( @@ -1128,7 +1134,7 @@ INHERITS (favorites); -- --- Name: favorites_17; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_17; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_17 ( @@ -1138,7 +1144,7 @@ INHERITS (favorites); -- --- Name: favorites_18; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_18; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_18 ( @@ -1148,7 +1154,7 @@ INHERITS (favorites); -- --- Name: favorites_19; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_19; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_19 ( @@ -1158,7 +1164,7 @@ INHERITS (favorites); -- --- Name: favorites_2; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_2; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_2 ( @@ -1168,7 +1174,7 @@ INHERITS (favorites); -- --- Name: favorites_20; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_20; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_20 ( @@ -1178,7 +1184,7 @@ INHERITS (favorites); -- --- Name: favorites_21; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_21; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_21 ( @@ -1188,7 +1194,7 @@ INHERITS (favorites); -- --- Name: favorites_22; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_22; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_22 ( @@ -1198,7 +1204,7 @@ INHERITS (favorites); -- --- Name: favorites_23; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_23; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_23 ( @@ -1208,7 +1214,7 @@ INHERITS (favorites); -- --- Name: favorites_24; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_24; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_24 ( @@ -1218,7 +1224,7 @@ INHERITS (favorites); -- --- Name: favorites_25; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_25; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_25 ( @@ -1228,7 +1234,7 @@ INHERITS (favorites); -- --- Name: favorites_26; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_26; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_26 ( @@ -1238,7 +1244,7 @@ INHERITS (favorites); -- --- Name: favorites_27; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_27; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_27 ( @@ -1248,7 +1254,7 @@ INHERITS (favorites); -- --- Name: favorites_28; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_28; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_28 ( @@ -1258,7 +1264,7 @@ INHERITS (favorites); -- --- Name: favorites_29; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_29; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_29 ( @@ -1268,7 +1274,7 @@ INHERITS (favorites); -- --- Name: favorites_3; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_3; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_3 ( @@ -1278,7 +1284,7 @@ INHERITS (favorites); -- --- Name: favorites_30; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_30; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_30 ( @@ -1288,7 +1294,7 @@ INHERITS (favorites); -- --- Name: favorites_31; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_31; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_31 ( @@ -1298,7 +1304,7 @@ INHERITS (favorites); -- --- Name: favorites_32; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_32; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_32 ( @@ -1308,7 +1314,7 @@ INHERITS (favorites); -- --- Name: favorites_33; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_33; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_33 ( @@ -1318,7 +1324,7 @@ INHERITS (favorites); -- --- Name: favorites_34; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_34; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_34 ( @@ -1328,7 +1334,7 @@ INHERITS (favorites); -- --- Name: favorites_35; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_35; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_35 ( @@ -1338,7 +1344,7 @@ INHERITS (favorites); -- --- Name: favorites_36; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_36; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_36 ( @@ -1348,7 +1354,7 @@ INHERITS (favorites); -- --- Name: favorites_37; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_37; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_37 ( @@ -1358,7 +1364,7 @@ INHERITS (favorites); -- --- Name: favorites_38; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_38; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_38 ( @@ -1368,7 +1374,7 @@ INHERITS (favorites); -- --- Name: favorites_39; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_39; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_39 ( @@ -1378,7 +1384,7 @@ INHERITS (favorites); -- --- Name: favorites_4; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_4; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_4 ( @@ -1388,7 +1394,7 @@ INHERITS (favorites); -- --- Name: favorites_40; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_40; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_40 ( @@ -1398,7 +1404,7 @@ INHERITS (favorites); -- --- Name: favorites_41; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_41; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_41 ( @@ -1408,7 +1414,7 @@ INHERITS (favorites); -- --- Name: favorites_42; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_42; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_42 ( @@ -1418,7 +1424,7 @@ INHERITS (favorites); -- --- Name: favorites_43; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_43; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_43 ( @@ -1428,7 +1434,7 @@ INHERITS (favorites); -- --- Name: favorites_44; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_44; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_44 ( @@ -1438,7 +1444,7 @@ INHERITS (favorites); -- --- Name: favorites_45; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_45; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_45 ( @@ -1448,7 +1454,7 @@ INHERITS (favorites); -- --- Name: favorites_46; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_46; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_46 ( @@ -1458,7 +1464,7 @@ INHERITS (favorites); -- --- Name: favorites_47; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_47; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_47 ( @@ -1468,7 +1474,7 @@ INHERITS (favorites); -- --- Name: favorites_48; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_48; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_48 ( @@ -1478,7 +1484,7 @@ INHERITS (favorites); -- --- Name: favorites_49; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_49; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_49 ( @@ -1488,7 +1494,7 @@ INHERITS (favorites); -- --- Name: favorites_5; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_5; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_5 ( @@ -1498,7 +1504,7 @@ INHERITS (favorites); -- --- Name: favorites_50; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_50; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_50 ( @@ -1508,7 +1514,7 @@ INHERITS (favorites); -- --- Name: favorites_51; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_51; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_51 ( @@ -1518,7 +1524,7 @@ INHERITS (favorites); -- --- Name: favorites_52; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_52; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_52 ( @@ -1528,7 +1534,7 @@ INHERITS (favorites); -- --- Name: favorites_53; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_53; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_53 ( @@ -1538,7 +1544,7 @@ INHERITS (favorites); -- --- Name: favorites_54; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_54; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_54 ( @@ -1548,7 +1554,7 @@ INHERITS (favorites); -- --- Name: favorites_55; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_55; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_55 ( @@ -1558,7 +1564,7 @@ INHERITS (favorites); -- --- Name: favorites_56; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_56; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_56 ( @@ -1568,7 +1574,7 @@ INHERITS (favorites); -- --- Name: favorites_57; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_57; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_57 ( @@ -1578,7 +1584,7 @@ INHERITS (favorites); -- --- Name: favorites_58; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_58; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_58 ( @@ -1588,7 +1594,7 @@ INHERITS (favorites); -- --- Name: favorites_59; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_59; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_59 ( @@ -1598,7 +1604,7 @@ INHERITS (favorites); -- --- Name: favorites_6; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_6; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_6 ( @@ -1608,7 +1614,7 @@ INHERITS (favorites); -- --- Name: favorites_60; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_60; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_60 ( @@ -1618,7 +1624,7 @@ INHERITS (favorites); -- --- Name: favorites_61; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_61; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_61 ( @@ -1628,7 +1634,7 @@ INHERITS (favorites); -- --- Name: favorites_62; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_62; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_62 ( @@ -1638,7 +1644,7 @@ INHERITS (favorites); -- --- Name: favorites_63; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_63; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_63 ( @@ -1648,7 +1654,7 @@ INHERITS (favorites); -- --- Name: favorites_64; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_64; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_64 ( @@ -1658,7 +1664,7 @@ INHERITS (favorites); -- --- Name: favorites_65; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_65; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_65 ( @@ -1668,7 +1674,7 @@ INHERITS (favorites); -- --- Name: favorites_66; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_66; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_66 ( @@ -1678,7 +1684,7 @@ INHERITS (favorites); -- --- Name: favorites_67; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_67; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_67 ( @@ -1688,7 +1694,7 @@ INHERITS (favorites); -- --- Name: favorites_68; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_68; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_68 ( @@ -1698,7 +1704,7 @@ INHERITS (favorites); -- --- Name: favorites_69; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_69; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_69 ( @@ -1708,7 +1714,7 @@ INHERITS (favorites); -- --- Name: favorites_7; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_7; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_7 ( @@ -1718,7 +1724,7 @@ INHERITS (favorites); -- --- Name: favorites_70; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_70; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_70 ( @@ -1728,7 +1734,7 @@ INHERITS (favorites); -- --- Name: favorites_71; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_71; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_71 ( @@ -1738,7 +1744,7 @@ INHERITS (favorites); -- --- Name: favorites_72; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_72; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_72 ( @@ -1748,7 +1754,7 @@ INHERITS (favorites); -- --- Name: favorites_73; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_73; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_73 ( @@ -1758,7 +1764,7 @@ INHERITS (favorites); -- --- Name: favorites_74; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_74; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_74 ( @@ -1768,7 +1774,7 @@ INHERITS (favorites); -- --- Name: favorites_75; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_75; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_75 ( @@ -1778,7 +1784,7 @@ INHERITS (favorites); -- --- Name: favorites_76; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_76; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_76 ( @@ -1788,7 +1794,7 @@ INHERITS (favorites); -- --- Name: favorites_77; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_77; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_77 ( @@ -1798,7 +1804,7 @@ INHERITS (favorites); -- --- Name: favorites_78; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_78; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_78 ( @@ -1808,7 +1814,7 @@ INHERITS (favorites); -- --- Name: favorites_79; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_79; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_79 ( @@ -1818,7 +1824,7 @@ INHERITS (favorites); -- --- Name: favorites_8; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_8; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_8 ( @@ -1828,7 +1834,7 @@ INHERITS (favorites); -- --- Name: favorites_80; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_80; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_80 ( @@ -1838,7 +1844,7 @@ INHERITS (favorites); -- --- Name: favorites_81; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_81; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_81 ( @@ -1848,7 +1854,7 @@ INHERITS (favorites); -- --- Name: favorites_82; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_82; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_82 ( @@ -1858,7 +1864,7 @@ INHERITS (favorites); -- --- Name: favorites_83; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_83; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_83 ( @@ -1868,7 +1874,7 @@ INHERITS (favorites); -- --- Name: favorites_84; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_84; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_84 ( @@ -1878,7 +1884,7 @@ INHERITS (favorites); -- --- Name: favorites_85; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_85; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_85 ( @@ -1888,7 +1894,7 @@ INHERITS (favorites); -- --- Name: favorites_86; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_86; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_86 ( @@ -1898,7 +1904,7 @@ INHERITS (favorites); -- --- Name: favorites_87; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_87; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_87 ( @@ -1908,7 +1914,7 @@ INHERITS (favorites); -- --- Name: favorites_88; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_88; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_88 ( @@ -1918,7 +1924,7 @@ INHERITS (favorites); -- --- Name: favorites_89; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_89; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_89 ( @@ -1928,7 +1934,7 @@ INHERITS (favorites); -- --- Name: favorites_9; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_9; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_9 ( @@ -1938,7 +1944,7 @@ INHERITS (favorites); -- --- Name: favorites_90; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_90; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_90 ( @@ -1948,7 +1954,7 @@ INHERITS (favorites); -- --- Name: favorites_91; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_91; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_91 ( @@ -1958,7 +1964,7 @@ INHERITS (favorites); -- --- Name: favorites_92; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_92; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_92 ( @@ -1968,7 +1974,7 @@ INHERITS (favorites); -- --- Name: favorites_93; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_93; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_93 ( @@ -1978,7 +1984,7 @@ INHERITS (favorites); -- --- Name: favorites_94; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_94; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_94 ( @@ -1988,7 +1994,7 @@ INHERITS (favorites); -- --- Name: favorites_95; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_95; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_95 ( @@ -1998,7 +2004,7 @@ INHERITS (favorites); -- --- Name: favorites_96; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_96; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_96 ( @@ -2008,7 +2014,7 @@ INHERITS (favorites); -- --- Name: favorites_97; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_97; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_97 ( @@ -2018,7 +2024,7 @@ INHERITS (favorites); -- --- Name: favorites_98; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_98; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_98 ( @@ -2028,7 +2034,7 @@ INHERITS (favorites); -- --- Name: favorites_99; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: favorites_99; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE favorites_99 ( @@ -2057,7 +2063,7 @@ ALTER SEQUENCE favorites_id_seq OWNED BY favorites.id; -- --- Name: forum_posts; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: forum_posts; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE forum_posts ( @@ -2068,8 +2074,8 @@ CREATE TABLE forum_posts ( body text NOT NULL, text_index tsvector NOT NULL, is_deleted boolean DEFAULT false NOT NULL, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL + created_at timestamp without time zone, + updated_at timestamp without time zone ); @@ -2093,7 +2099,7 @@ ALTER SEQUENCE forum_posts_id_seq OWNED BY forum_posts.id; -- --- Name: forum_subscriptions; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: forum_subscriptions; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE forum_subscriptions ( @@ -2101,7 +2107,7 @@ CREATE TABLE forum_subscriptions ( user_id integer, forum_topic_id integer, last_read_at timestamp without time zone, - delete_key character varying(255) + delete_key character varying ); @@ -2125,7 +2131,7 @@ ALTER SEQUENCE forum_subscriptions_id_seq OWNED BY forum_subscriptions.id; -- --- Name: forum_topic_visits; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: forum_topic_visits; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE forum_topic_visits ( @@ -2158,21 +2164,21 @@ ALTER SEQUENCE forum_topic_visits_id_seq OWNED BY forum_topic_visits.id; -- --- Name: forum_topics; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: forum_topics; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE forum_topics ( id integer NOT NULL, creator_id integer NOT NULL, updater_id integer NOT NULL, - title character varying(255) NOT NULL, + title character varying NOT NULL, response_count integer DEFAULT 0 NOT NULL, is_sticky boolean DEFAULT false NOT NULL, is_locked boolean DEFAULT false NOT NULL, is_deleted boolean DEFAULT false NOT NULL, text_index tsvector NOT NULL, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, + created_at timestamp without time zone, + updated_at timestamp without time zone, category_id integer DEFAULT 0 NOT NULL ); @@ -2197,7 +2203,7 @@ ALTER SEQUENCE forum_topics_id_seq OWNED BY forum_topics.id; -- --- Name: ip_bans; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: ip_bans; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE ip_bans ( @@ -2205,8 +2211,8 @@ CREATE TABLE ip_bans ( creator_id integer NOT NULL, ip_addr inet NOT NULL, reason text NOT NULL, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL + created_at timestamp without time zone, + updated_at timestamp without time zone ); @@ -2230,7 +2236,7 @@ ALTER SEQUENCE ip_bans_id_seq OWNED BY ip_bans.id; -- --- Name: janitor_trials; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: janitor_trials; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE janitor_trials ( @@ -2238,9 +2244,9 @@ CREATE TABLE janitor_trials ( creator_id integer NOT NULL, user_id integer NOT NULL, original_level integer, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - status character varying(255) DEFAULT 'active'::character varying NOT NULL + created_at timestamp without time zone, + updated_at timestamp without time zone, + status character varying DEFAULT 'active'::character varying NOT NULL ); @@ -2264,15 +2270,15 @@ ALTER SEQUENCE janitor_trials_id_seq OWNED BY janitor_trials.id; -- --- Name: key_values; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: key_values; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE key_values ( id integer NOT NULL, - key character varying(255) NOT NULL, + key character varying NOT NULL, value text, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL + created_at timestamp without time zone, + updated_at timestamp without time zone ); @@ -2296,15 +2302,15 @@ ALTER SEQUENCE key_values_id_seq OWNED BY key_values.id; -- --- Name: mod_actions; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: mod_actions; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE mod_actions ( id integer NOT NULL, creator_id integer NOT NULL, description text NOT NULL, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL + created_at timestamp without time zone, + updated_at timestamp without time zone ); @@ -2328,7 +2334,7 @@ ALTER SEQUENCE mod_actions_id_seq OWNED BY mod_actions.id; -- --- Name: news_updates; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: news_updates; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE news_updates ( @@ -2336,8 +2342,8 @@ CREATE TABLE news_updates ( message text NOT NULL, creator_id integer NOT NULL, updater_id integer NOT NULL, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL + created_at timestamp without time zone, + updated_at timestamp without time zone ); @@ -2361,7 +2367,7 @@ ALTER SEQUENCE news_updates_id_seq OWNED BY news_updates.id; -- --- Name: note_versions; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: note_versions; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE note_versions ( @@ -2376,8 +2382,8 @@ CREATE TABLE note_versions ( height integer NOT NULL, is_active boolean DEFAULT true NOT NULL, body text NOT NULL, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, + created_at timestamp without time zone, + updated_at timestamp without time zone, version integer DEFAULT 0 NOT NULL ); @@ -2402,7 +2408,7 @@ ALTER SEQUENCE note_versions_id_seq OWNED BY note_versions.id; -- --- Name: notes; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: notes; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE notes ( @@ -2416,8 +2422,8 @@ CREATE TABLE notes ( is_active boolean DEFAULT true NOT NULL, body text NOT NULL, body_index tsvector NOT NULL, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, + created_at timestamp without time zone, + updated_at timestamp without time zone, version integer DEFAULT 0 NOT NULL ); @@ -2442,14 +2448,14 @@ ALTER SEQUENCE notes_id_seq OWNED BY notes.id; -- --- Name: pixiv_ugoira_frame_data; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: pixiv_ugoira_frame_data; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE pixiv_ugoira_frame_data ( id integer NOT NULL, post_id integer, data text NOT NULL, - content_type character varying(255) NOT NULL + content_type character varying NOT NULL ); @@ -2473,7 +2479,7 @@ ALTER SEQUENCE pixiv_ugoira_frame_data_id_seq OWNED BY pixiv_ugoira_frame_data.i -- --- Name: pool_versions; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: pool_versions; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE pool_versions ( @@ -2482,9 +2488,9 @@ CREATE TABLE pool_versions ( post_ids text DEFAULT ''::text NOT NULL, updater_id integer NOT NULL, updater_ip_addr inet NOT NULL, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - name character varying(255) + created_at timestamp without time zone, + updated_at timestamp without time zone, + name character varying ); @@ -2508,21 +2514,21 @@ ALTER SEQUENCE pool_versions_id_seq OWNED BY pool_versions.id; -- --- Name: pools; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: pools; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE pools ( id integer NOT NULL, - name character varying(255), + name character varying, creator_id integer NOT NULL, description text, is_active boolean DEFAULT true NOT NULL, post_ids text DEFAULT ''::text NOT NULL, post_count integer DEFAULT 0 NOT NULL, is_deleted boolean DEFAULT false NOT NULL, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - category character varying(255) DEFAULT 'series'::character varying NOT NULL + created_at timestamp without time zone, + updated_at timestamp without time zone, + category character varying DEFAULT 'series'::character varying NOT NULL ); @@ -2546,7 +2552,7 @@ ALTER SEQUENCE pools_id_seq OWNED BY pools.id; -- --- Name: post_appeals; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: post_appeals; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE post_appeals ( @@ -2555,8 +2561,8 @@ CREATE TABLE post_appeals ( creator_id integer NOT NULL, creator_ip_addr integer NOT NULL, reason text, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL + created_at timestamp without time zone, + updated_at timestamp without time zone ); @@ -2580,16 +2586,16 @@ ALTER SEQUENCE post_appeals_id_seq OWNED BY post_appeals.id; -- --- Name: post_disapprovals; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: post_disapprovals; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE post_disapprovals ( id integer NOT NULL, user_id integer NOT NULL, post_id integer NOT NULL, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - reason character varying(255) DEFAULT 'legacy'::character varying, + created_at timestamp without time zone, + updated_at timestamp without time zone, + reason character varying DEFAULT 'legacy'::character varying, message text ); @@ -2614,7 +2620,7 @@ ALTER SEQUENCE post_disapprovals_id_seq OWNED BY post_disapprovals.id; -- --- Name: post_flags; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: post_flags; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE post_flags ( @@ -2624,8 +2630,8 @@ CREATE TABLE post_flags ( creator_ip_addr inet NOT NULL, reason text, is_resolved boolean DEFAULT false NOT NULL, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL + created_at timestamp without time zone, + updated_at timestamp without time zone ); @@ -2649,13 +2655,13 @@ ALTER SEQUENCE post_flags_id_seq OWNED BY post_flags.id; -- --- Name: post_versions; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: post_versions; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE post_versions ( id integer NOT NULL, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, + created_at timestamp without time zone, + updated_at timestamp without time zone, post_id integer NOT NULL, tags text DEFAULT ''::text NOT NULL, rating character(1), @@ -2686,7 +2692,7 @@ ALTER SEQUENCE post_versions_id_seq OWNED BY post_versions.id; -- --- Name: post_votes; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: post_votes; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE post_votes ( @@ -2694,8 +2700,8 @@ CREATE TABLE post_votes ( post_id integer NOT NULL, user_id integer NOT NULL, score integer NOT NULL, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL + created_at timestamp without time zone, + updated_at timestamp without time zone ); @@ -2719,18 +2725,18 @@ ALTER SEQUENCE post_votes_id_seq OWNED BY post_votes.id; -- --- Name: posts; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: posts; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE posts ( id integer NOT NULL, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, + created_at timestamp without time zone, + updated_at timestamp without time zone, up_score integer DEFAULT 0 NOT NULL, down_score integer DEFAULT 0 NOT NULL, score integer DEFAULT 0 NOT NULL, - source character varying(255), - md5 character varying(255) NOT NULL, + source character varying, + md5 character varying NOT NULL, rating character(1) DEFAULT 'q'::bpchar NOT NULL, is_note_locked boolean DEFAULT false NOT NULL, is_rating_locked boolean DEFAULT false NOT NULL, @@ -2753,7 +2759,7 @@ CREATE TABLE posts ( tag_count_artist integer DEFAULT 0 NOT NULL, tag_count_character integer DEFAULT 0 NOT NULL, tag_count_copyright integer DEFAULT 0 NOT NULL, - file_ext character varying(255) NOT NULL, + file_ext character varying NOT NULL, file_size integer NOT NULL, image_width integer NOT NULL, image_height integer NOT NULL, @@ -2787,7 +2793,7 @@ ALTER SEQUENCE posts_id_seq OWNED BY posts.id; -- --- Name: saved_searches; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: saved_searches; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE saved_searches ( @@ -2795,7 +2801,7 @@ CREATE TABLE saved_searches ( user_id integer, tag_query text, name text, - category character varying(255), + category character varying, created_at timestamp without time zone, updated_at timestamp without time zone ); @@ -2821,16 +2827,16 @@ ALTER SEQUENCE saved_searches_id_seq OWNED BY saved_searches.id; -- --- Name: schema_migrations; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: schema_migrations; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE schema_migrations ( - version character varying(255) NOT NULL + version character varying NOT NULL ); -- --- Name: super_voters; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: super_voters; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE super_voters ( @@ -2861,20 +2867,21 @@ ALTER SEQUENCE super_voters_id_seq OWNED BY super_voters.id; -- --- Name: tag_aliases; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: tag_aliases; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE tag_aliases ( id integer NOT NULL, - antecedent_name character varying(255) NOT NULL, - consequent_name character varying(255) NOT NULL, + antecedent_name character varying NOT NULL, + consequent_name character varying NOT NULL, creator_id integer NOT NULL, creator_ip_addr inet NOT NULL, forum_topic_id integer, status text DEFAULT 'pending'::text NOT NULL, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - post_count integer DEFAULT 0 NOT NULL + created_at timestamp without time zone, + updated_at timestamp without time zone, + post_count integer DEFAULT 0 NOT NULL, + approver_id integer ); @@ -2898,20 +2905,21 @@ ALTER SEQUENCE tag_aliases_id_seq OWNED BY tag_aliases.id; -- --- Name: tag_implications; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: tag_implications; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE tag_implications ( id integer NOT NULL, - antecedent_name character varying(255) NOT NULL, - consequent_name character varying(255) NOT NULL, + antecedent_name character varying NOT NULL, + consequent_name character varying NOT NULL, descendant_names text NOT NULL, creator_id integer NOT NULL, creator_ip_addr inet NOT NULL, forum_topic_id integer, status text DEFAULT 'pending'::text NOT NULL, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL + created_at timestamp without time zone, + updated_at timestamp without time zone, + approver_id integer ); @@ -2935,20 +2943,20 @@ ALTER SEQUENCE tag_implications_id_seq OWNED BY tag_implications.id; -- --- Name: tag_subscriptions; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: tag_subscriptions; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE tag_subscriptions ( id integer NOT NULL, creator_id integer NOT NULL, - name character varying(255) NOT NULL, + name character varying NOT NULL, tag_query text NOT NULL, post_ids text NOT NULL, is_public boolean DEFAULT true NOT NULL, last_accessed_at timestamp without time zone, is_opted_in boolean DEFAULT false NOT NULL, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL + created_at timestamp without time zone, + updated_at timestamp without time zone ); @@ -2972,18 +2980,18 @@ ALTER SEQUENCE tag_subscriptions_id_seq OWNED BY tag_subscriptions.id; -- --- Name: tags; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: tags; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE tags ( id integer NOT NULL, - name character varying(255) NOT NULL, + name character varying NOT NULL, post_count integer DEFAULT 0 NOT NULL, category integer DEFAULT 0 NOT NULL, related_tags text, related_tags_updated_at timestamp without time zone, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, + created_at timestamp without time zone, + updated_at timestamp without time zone, is_locked boolean DEFAULT false NOT NULL ); @@ -3008,16 +3016,16 @@ ALTER SEQUENCE tags_id_seq OWNED BY tags.id; -- --- Name: transaction_log_items; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: transaction_log_items; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE transaction_log_items ( id integer NOT NULL, - category character varying(255), + category character varying, user_id integer, data text, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL + created_at timestamp without time zone, + updated_at timestamp without time zone ); @@ -3041,14 +3049,14 @@ ALTER SEQUENCE transaction_log_items_id_seq OWNED BY transaction_log_items.id; -- --- Name: uploads; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: uploads; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE uploads ( id integer NOT NULL, source text, - file_path character varying(255), - content_type character varying(255), + file_path character varying, + content_type character varying, rating character(1) NOT NULL, uploader_id integer NOT NULL, uploader_ip_addr inet NOT NULL, @@ -3056,9 +3064,9 @@ CREATE TABLE uploads ( status text DEFAULT 'pending'::text NOT NULL, backtrace text, post_id integer, - md5_confirmation character varying(255), - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, + md5_confirmation character varying, + created_at timestamp without time zone, + updated_at timestamp without time zone, server text, parent_id integer ); @@ -3084,17 +3092,17 @@ ALTER SEQUENCE uploads_id_seq OWNED BY uploads.id; -- --- Name: user_feedback; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: user_feedback; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE user_feedback ( id integer NOT NULL, user_id integer NOT NULL, creator_id integer NOT NULL, - category character varying(255) NOT NULL, + category character varying NOT NULL, body text NOT NULL, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL + created_at timestamp without time zone, + updated_at timestamp without time zone ); @@ -3118,20 +3126,20 @@ ALTER SEQUENCE user_feedback_id_seq OWNED BY user_feedback.id; -- --- Name: user_name_change_requests; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: user_name_change_requests; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE user_name_change_requests ( id integer NOT NULL, - status character varying(255) DEFAULT 'pending'::character varying NOT NULL, + status character varying DEFAULT 'pending'::character varying NOT NULL, user_id integer NOT NULL, approver_id integer, - original_name character varying(255), - desired_name character varying(255), + original_name character varying, + desired_name character varying, change_reason text, rejection_reason text, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL + created_at timestamp without time zone, + updated_at timestamp without time zone ); @@ -3155,15 +3163,15 @@ ALTER SEQUENCE user_name_change_requests_id_seq OWNED BY user_name_change_reques -- --- Name: user_password_reset_nonces; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: user_password_reset_nonces; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE user_password_reset_nonces ( id integer NOT NULL, - key character varying(255) NOT NULL, - email character varying(255) NOT NULL, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL + key character varying NOT NULL, + email character varying NOT NULL, + created_at timestamp without time zone, + updated_at timestamp without time zone ); @@ -3187,17 +3195,17 @@ ALTER SEQUENCE user_password_reset_nonces_id_seq OWNED BY user_password_reset_no -- --- Name: users; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: users; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE users ( id integer NOT NULL, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - name character varying(255) NOT NULL, - password_hash character varying(255) NOT NULL, - email character varying(255), - email_verification_key character varying(255), + created_at timestamp without time zone, + updated_at timestamp without time zone, + name character varying NOT NULL, + password_hash character varying NOT NULL, + email character varying, + email_verification_key character varying, inviter_id integer, level integer DEFAULT 0 NOT NULL, base_upload_limit integer DEFAULT 10 NOT NULL, @@ -3208,14 +3216,14 @@ CREATE TABLE users ( post_update_count integer DEFAULT 0 NOT NULL, note_update_count integer DEFAULT 0 NOT NULL, favorite_count integer DEFAULT 0 NOT NULL, - comment_threshold integer DEFAULT (-1) NOT NULL, - default_image_size character varying(255) DEFAULT 'large'::character varying NOT NULL, + comment_threshold integer DEFAULT '-1'::integer NOT NULL, + default_image_size character varying DEFAULT 'large'::character varying NOT NULL, favorite_tags text, blacklisted_tags text DEFAULT 'spoilers guro scat furry -rating:s'::text, - time_zone character varying(255) DEFAULT 'Eastern Time (US & Canada)'::character varying NOT NULL, + time_zone character varying DEFAULT 'Eastern Time (US & Canada)'::character varying NOT NULL, bcrypt_password_hash text, per_page integer DEFAULT 20 NOT NULL, custom_style text, @@ -3244,7 +3252,7 @@ ALTER SEQUENCE users_id_seq OWNED BY users.id; -- --- Name: wiki_page_versions; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: wiki_page_versions; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE wiki_page_versions ( @@ -3252,11 +3260,11 @@ CREATE TABLE wiki_page_versions ( wiki_page_id integer NOT NULL, updater_id integer NOT NULL, updater_ip_addr inet NOT NULL, - title character varying(255) NOT NULL, + title character varying NOT NULL, body text NOT NULL, is_locked boolean NOT NULL, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, + created_at timestamp without time zone, + updated_at timestamp without time zone, other_names text ); @@ -3281,18 +3289,18 @@ ALTER SEQUENCE wiki_page_versions_id_seq OWNED BY wiki_page_versions.id; -- --- Name: wiki_pages; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- Name: wiki_pages; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE wiki_pages ( id integer NOT NULL, creator_id integer NOT NULL, - title character varying(255) NOT NULL, + title character varying NOT NULL, body text NOT NULL, body_index tsvector NOT NULL, is_locked boolean DEFAULT false NOT NULL, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, + created_at timestamp without time zone, + updated_at timestamp without time zone, updater_id integer, other_names text, other_names_index tsvector @@ -4383,7 +4391,7 @@ ALTER TABLE ONLY wiki_pages ALTER COLUMN id SET DEFAULT nextval('wiki_pages_id_s -- --- Name: advertisement_hits_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: advertisement_hits_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY advertisement_hits @@ -4391,7 +4399,7 @@ ALTER TABLE ONLY advertisement_hits -- --- Name: advertisements_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: advertisements_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY advertisements @@ -4399,7 +4407,7 @@ ALTER TABLE ONLY advertisements -- --- Name: amazon_backups_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: amazon_backups_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY amazon_backups @@ -4407,7 +4415,7 @@ ALTER TABLE ONLY amazon_backups -- --- Name: api_keys_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: api_keys_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY api_keys @@ -4415,7 +4423,7 @@ ALTER TABLE ONLY api_keys -- --- Name: artist_commentaries_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: artist_commentaries_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY artist_commentaries @@ -4423,7 +4431,7 @@ ALTER TABLE ONLY artist_commentaries -- --- Name: artist_commentary_versions_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: artist_commentary_versions_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY artist_commentary_versions @@ -4431,7 +4439,7 @@ ALTER TABLE ONLY artist_commentary_versions -- --- Name: artist_urls_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: artist_urls_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY artist_urls @@ -4439,7 +4447,7 @@ ALTER TABLE ONLY artist_urls -- --- Name: artist_versions_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: artist_versions_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY artist_versions @@ -4447,7 +4455,7 @@ ALTER TABLE ONLY artist_versions -- --- Name: artists_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: artists_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY artists @@ -4455,7 +4463,7 @@ ALTER TABLE ONLY artists -- --- Name: bans_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: bans_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY bans @@ -4463,7 +4471,7 @@ ALTER TABLE ONLY bans -- --- Name: bulk_update_requests_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: bulk_update_requests_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY bulk_update_requests @@ -4471,7 +4479,7 @@ ALTER TABLE ONLY bulk_update_requests -- --- Name: comment_votes_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: comment_votes_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY comment_votes @@ -4479,7 +4487,7 @@ ALTER TABLE ONLY comment_votes -- --- Name: comments_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: comments_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY comments @@ -4487,7 +4495,7 @@ ALTER TABLE ONLY comments -- --- Name: delayed_jobs_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: delayed_jobs_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY delayed_jobs @@ -4495,7 +4503,7 @@ ALTER TABLE ONLY delayed_jobs -- --- Name: dmail_filters_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: dmail_filters_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY dmail_filters @@ -4503,7 +4511,7 @@ ALTER TABLE ONLY dmail_filters -- --- Name: dmails_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: dmails_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY dmails @@ -4511,7 +4519,7 @@ ALTER TABLE ONLY dmails -- --- Name: favorite_groups_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: favorite_groups_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY favorite_groups @@ -4519,7 +4527,7 @@ ALTER TABLE ONLY favorite_groups -- --- Name: favorites_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: favorites_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY favorites @@ -4527,7 +4535,7 @@ ALTER TABLE ONLY favorites -- --- Name: forum_posts_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: forum_posts_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY forum_posts @@ -4535,7 +4543,7 @@ ALTER TABLE ONLY forum_posts -- --- Name: forum_subscriptions_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: forum_subscriptions_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY forum_subscriptions @@ -4543,7 +4551,7 @@ ALTER TABLE ONLY forum_subscriptions -- --- Name: forum_topic_visits_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: forum_topic_visits_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY forum_topic_visits @@ -4551,7 +4559,7 @@ ALTER TABLE ONLY forum_topic_visits -- --- Name: forum_topics_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: forum_topics_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY forum_topics @@ -4559,7 +4567,7 @@ ALTER TABLE ONLY forum_topics -- --- Name: ip_bans_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: ip_bans_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY ip_bans @@ -4567,7 +4575,7 @@ ALTER TABLE ONLY ip_bans -- --- Name: janitor_trials_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: janitor_trials_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY janitor_trials @@ -4575,7 +4583,7 @@ ALTER TABLE ONLY janitor_trials -- --- Name: key_values_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: key_values_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY key_values @@ -4583,7 +4591,7 @@ ALTER TABLE ONLY key_values -- --- Name: mod_actions_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: mod_actions_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY mod_actions @@ -4591,7 +4599,7 @@ ALTER TABLE ONLY mod_actions -- --- Name: news_updates_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: news_updates_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY news_updates @@ -4599,7 +4607,7 @@ ALTER TABLE ONLY news_updates -- --- Name: note_versions_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: note_versions_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY note_versions @@ -4607,7 +4615,7 @@ ALTER TABLE ONLY note_versions -- --- Name: notes_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: notes_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY notes @@ -4615,7 +4623,7 @@ ALTER TABLE ONLY notes -- --- Name: pixiv_ugoira_frame_data_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: pixiv_ugoira_frame_data_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY pixiv_ugoira_frame_data @@ -4623,7 +4631,7 @@ ALTER TABLE ONLY pixiv_ugoira_frame_data -- --- Name: pool_versions_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: pool_versions_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY pool_versions @@ -4631,7 +4639,7 @@ ALTER TABLE ONLY pool_versions -- --- Name: pools_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: pools_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY pools @@ -4639,7 +4647,7 @@ ALTER TABLE ONLY pools -- --- Name: post_appeals_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: post_appeals_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY post_appeals @@ -4647,7 +4655,7 @@ ALTER TABLE ONLY post_appeals -- --- Name: post_disapprovals_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: post_disapprovals_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY post_disapprovals @@ -4655,7 +4663,7 @@ ALTER TABLE ONLY post_disapprovals -- --- Name: post_flags_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: post_flags_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY post_flags @@ -4663,7 +4671,7 @@ ALTER TABLE ONLY post_flags -- --- Name: post_versions_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: post_versions_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY post_versions @@ -4671,7 +4679,7 @@ ALTER TABLE ONLY post_versions -- --- Name: post_votes_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: post_votes_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY post_votes @@ -4679,7 +4687,7 @@ ALTER TABLE ONLY post_votes -- --- Name: posts_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: posts_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY posts @@ -4687,7 +4695,7 @@ ALTER TABLE ONLY posts -- --- Name: saved_searches_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: saved_searches_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY saved_searches @@ -4695,7 +4703,7 @@ ALTER TABLE ONLY saved_searches -- --- Name: super_voters_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: super_voters_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY super_voters @@ -4703,7 +4711,7 @@ ALTER TABLE ONLY super_voters -- --- Name: tag_aliases_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: tag_aliases_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY tag_aliases @@ -4711,7 +4719,7 @@ ALTER TABLE ONLY tag_aliases -- --- Name: tag_implications_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: tag_implications_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY tag_implications @@ -4719,7 +4727,7 @@ ALTER TABLE ONLY tag_implications -- --- Name: tag_subscriptions_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: tag_subscriptions_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY tag_subscriptions @@ -4727,7 +4735,7 @@ ALTER TABLE ONLY tag_subscriptions -- --- Name: tags_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: tags_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY tags @@ -4735,7 +4743,7 @@ ALTER TABLE ONLY tags -- --- Name: transaction_log_items_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: transaction_log_items_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY transaction_log_items @@ -4743,7 +4751,7 @@ ALTER TABLE ONLY transaction_log_items -- --- Name: uploads_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: uploads_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY uploads @@ -4751,7 +4759,7 @@ ALTER TABLE ONLY uploads -- --- Name: user_feedback_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: user_feedback_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY user_feedback @@ -4759,7 +4767,7 @@ ALTER TABLE ONLY user_feedback -- --- Name: user_name_change_requests_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: user_name_change_requests_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY user_name_change_requests @@ -4767,7 +4775,7 @@ ALTER TABLE ONLY user_name_change_requests -- --- Name: user_password_reset_nonces_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: user_password_reset_nonces_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY user_password_reset_nonces @@ -4775,7 +4783,7 @@ ALTER TABLE ONLY user_password_reset_nonces -- --- Name: users_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: users_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY users @@ -4783,7 +4791,7 @@ ALTER TABLE ONLY users -- --- Name: wiki_page_versions_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: wiki_page_versions_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY wiki_page_versions @@ -4791,7 +4799,7 @@ ALTER TABLE ONLY wiki_page_versions -- --- Name: wiki_pages_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- Name: wiki_pages_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY wiki_pages @@ -4799,2289 +4807,2289 @@ ALTER TABLE ONLY wiki_pages -- --- Name: index_advertisement_hits_on_advertisement_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_advertisement_hits_on_advertisement_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_advertisement_hits_on_advertisement_id ON advertisement_hits USING btree (advertisement_id); -- --- Name: index_advertisement_hits_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_advertisement_hits_on_created_at; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_advertisement_hits_on_created_at ON advertisement_hits USING btree (created_at); -- --- Name: index_advertisements_on_ad_type; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_advertisements_on_ad_type; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_advertisements_on_ad_type ON advertisements USING btree (ad_type); -- --- Name: index_api_keys_on_key; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_api_keys_on_key; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX index_api_keys_on_key ON api_keys USING btree (key); -- --- Name: index_api_keys_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_api_keys_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX index_api_keys_on_user_id ON api_keys USING btree (user_id); -- --- Name: index_artist_commentaries_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_artist_commentaries_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX index_artist_commentaries_on_post_id ON artist_commentaries USING btree (post_id); -- --- Name: index_artist_commentary_versions_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_artist_commentary_versions_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_artist_commentary_versions_on_post_id ON artist_commentary_versions USING btree (post_id); -- --- Name: index_artist_commentary_versions_on_updater_id_and_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_artist_commentary_versions_on_updater_id_and_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_artist_commentary_versions_on_updater_id_and_post_id ON artist_commentary_versions USING btree (updater_id, post_id); -- --- Name: index_artist_urls_on_artist_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_artist_urls_on_artist_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_artist_urls_on_artist_id ON artist_urls USING btree (artist_id); -- --- Name: index_artist_urls_on_normalized_url; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_artist_urls_on_normalized_url; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_artist_urls_on_normalized_url ON artist_urls USING btree (normalized_url); -- --- Name: index_artist_urls_on_normalized_url_pattern; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_artist_urls_on_normalized_url_pattern; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_artist_urls_on_normalized_url_pattern ON artist_urls USING btree (normalized_url text_pattern_ops); -- --- Name: index_artist_urls_on_url; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_artist_urls_on_url; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_artist_urls_on_url ON artist_urls USING btree (url); -- --- Name: index_artist_urls_on_url_pattern; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_artist_urls_on_url_pattern; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_artist_urls_on_url_pattern ON artist_urls USING btree (url text_pattern_ops); -- --- Name: index_artist_versions_on_artist_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_artist_versions_on_artist_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_artist_versions_on_artist_id ON artist_versions USING btree (artist_id); -- --- Name: index_artist_versions_on_name; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_artist_versions_on_name; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_artist_versions_on_name ON artist_versions USING btree (name); -- --- Name: index_artist_versions_on_updater_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_artist_versions_on_updater_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_artist_versions_on_updater_id ON artist_versions USING btree (updater_id); -- --- Name: index_artists_on_group_name; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_artists_on_group_name; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_artists_on_group_name ON artists USING btree (group_name); -- --- Name: index_artists_on_group_name_trgm; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_artists_on_group_name_trgm; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_artists_on_group_name_trgm ON artists USING gin (group_name gin_trgm_ops); -- --- Name: index_artists_on_name; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_artists_on_name; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX index_artists_on_name ON artists USING btree (name); -- --- Name: index_artists_on_name_trgm; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_artists_on_name_trgm; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_artists_on_name_trgm ON artists USING gin (name gin_trgm_ops); -- --- Name: index_artists_on_other_names_index; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_artists_on_other_names_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_artists_on_other_names_index ON artists USING gin (other_names_index); -- --- Name: index_artists_on_other_names_trgm; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_artists_on_other_names_trgm; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_artists_on_other_names_trgm ON artists USING gin (other_names gin_trgm_ops); -- --- Name: index_bans_on_banner_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_bans_on_banner_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_bans_on_banner_id ON bans USING btree (banner_id); -- --- Name: index_bans_on_expires_at; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_bans_on_expires_at; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_bans_on_expires_at ON bans USING btree (expires_at); -- --- Name: index_bans_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_bans_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_bans_on_user_id ON bans USING btree (user_id); -- --- Name: index_comment_votes_on_comment_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_comment_votes_on_comment_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_comment_votes_on_comment_id ON comment_votes USING btree (comment_id); -- --- Name: index_comment_votes_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_comment_votes_on_created_at; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_comment_votes_on_created_at ON comment_votes USING btree (created_at); -- --- Name: index_comment_votes_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_comment_votes_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_comment_votes_on_user_id ON comment_votes USING btree (user_id); -- --- Name: index_comments_on_body_index; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_comments_on_body_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_comments_on_body_index ON comments USING gin (body_index); -- --- Name: index_comments_on_creator_id_and_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_comments_on_creator_id_and_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_comments_on_creator_id_and_post_id ON comments USING btree (creator_id, post_id); -- --- Name: index_comments_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_comments_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_comments_on_post_id ON comments USING btree (post_id); -- --- Name: index_delayed_jobs_on_run_at; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_delayed_jobs_on_run_at; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_delayed_jobs_on_run_at ON delayed_jobs USING btree (run_at); -- --- Name: index_dmail_filters_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_dmail_filters_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX index_dmail_filters_on_user_id ON dmail_filters USING btree (user_id); -- --- Name: index_dmails_on_creator_ip_addr; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_dmails_on_creator_ip_addr; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_dmails_on_creator_ip_addr ON dmails USING btree (creator_ip_addr); -- --- Name: index_dmails_on_message_index; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_dmails_on_message_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_dmails_on_message_index ON dmails USING gin (message_index); -- --- Name: index_dmails_on_owner_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_dmails_on_owner_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_dmails_on_owner_id ON dmails USING btree (owner_id); -- --- Name: index_favorite_groups_on_creator_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorite_groups_on_creator_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorite_groups_on_creator_id ON favorite_groups USING btree (creator_id); -- --- Name: index_favorite_groups_on_lower_name; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorite_groups_on_lower_name; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorite_groups_on_lower_name ON favorite_groups USING btree (lower(name)); -- --- Name: index_favorites_0_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_0_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_0_on_post_id ON favorites_0 USING btree (post_id); -- --- Name: index_favorites_0_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_0_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_0_on_user_id ON favorites_0 USING btree (user_id); -- --- Name: index_favorites_10_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_10_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_10_on_post_id ON favorites_10 USING btree (post_id); -- --- Name: index_favorites_10_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_10_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_10_on_user_id ON favorites_10 USING btree (user_id); -- --- Name: index_favorites_11_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_11_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_11_on_post_id ON favorites_11 USING btree (post_id); -- --- Name: index_favorites_11_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_11_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_11_on_user_id ON favorites_11 USING btree (user_id); -- --- Name: index_favorites_12_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_12_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_12_on_post_id ON favorites_12 USING btree (post_id); -- --- Name: index_favorites_12_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_12_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_12_on_user_id ON favorites_12 USING btree (user_id); -- --- Name: index_favorites_13_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_13_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_13_on_post_id ON favorites_13 USING btree (post_id); -- --- Name: index_favorites_13_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_13_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_13_on_user_id ON favorites_13 USING btree (user_id); -- --- Name: index_favorites_14_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_14_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_14_on_post_id ON favorites_14 USING btree (post_id); -- --- Name: index_favorites_14_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_14_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_14_on_user_id ON favorites_14 USING btree (user_id); -- --- Name: index_favorites_15_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_15_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_15_on_post_id ON favorites_15 USING btree (post_id); -- --- Name: index_favorites_15_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_15_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_15_on_user_id ON favorites_15 USING btree (user_id); -- --- Name: index_favorites_16_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_16_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_16_on_post_id ON favorites_16 USING btree (post_id); -- --- Name: index_favorites_16_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_16_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_16_on_user_id ON favorites_16 USING btree (user_id); -- --- Name: index_favorites_17_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_17_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_17_on_post_id ON favorites_17 USING btree (post_id); -- --- Name: index_favorites_17_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_17_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_17_on_user_id ON favorites_17 USING btree (user_id); -- --- Name: index_favorites_18_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_18_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_18_on_post_id ON favorites_18 USING btree (post_id); -- --- Name: index_favorites_18_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_18_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_18_on_user_id ON favorites_18 USING btree (user_id); -- --- Name: index_favorites_19_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_19_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_19_on_post_id ON favorites_19 USING btree (post_id); -- --- Name: index_favorites_19_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_19_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_19_on_user_id ON favorites_19 USING btree (user_id); -- --- Name: index_favorites_1_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_1_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_1_on_post_id ON favorites_1 USING btree (post_id); -- --- Name: index_favorites_1_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_1_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_1_on_user_id ON favorites_1 USING btree (user_id); -- --- Name: index_favorites_20_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_20_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_20_on_post_id ON favorites_20 USING btree (post_id); -- --- Name: index_favorites_20_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_20_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_20_on_user_id ON favorites_20 USING btree (user_id); -- --- Name: index_favorites_21_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_21_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_21_on_post_id ON favorites_21 USING btree (post_id); -- --- Name: index_favorites_21_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_21_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_21_on_user_id ON favorites_21 USING btree (user_id); -- --- Name: index_favorites_22_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_22_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_22_on_post_id ON favorites_22 USING btree (post_id); -- --- Name: index_favorites_22_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_22_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_22_on_user_id ON favorites_22 USING btree (user_id); -- --- Name: index_favorites_23_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_23_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_23_on_post_id ON favorites_23 USING btree (post_id); -- --- Name: index_favorites_23_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_23_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_23_on_user_id ON favorites_23 USING btree (user_id); -- --- Name: index_favorites_24_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_24_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_24_on_post_id ON favorites_24 USING btree (post_id); -- --- Name: index_favorites_24_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_24_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_24_on_user_id ON favorites_24 USING btree (user_id); -- --- Name: index_favorites_25_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_25_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_25_on_post_id ON favorites_25 USING btree (post_id); -- --- Name: index_favorites_25_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_25_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_25_on_user_id ON favorites_25 USING btree (user_id); -- --- Name: index_favorites_26_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_26_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_26_on_post_id ON favorites_26 USING btree (post_id); -- --- Name: index_favorites_26_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_26_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_26_on_user_id ON favorites_26 USING btree (user_id); -- --- Name: index_favorites_27_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_27_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_27_on_post_id ON favorites_27 USING btree (post_id); -- --- Name: index_favorites_27_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_27_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_27_on_user_id ON favorites_27 USING btree (user_id); -- --- Name: index_favorites_28_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_28_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_28_on_post_id ON favorites_28 USING btree (post_id); -- --- Name: index_favorites_28_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_28_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_28_on_user_id ON favorites_28 USING btree (user_id); -- --- Name: index_favorites_29_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_29_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_29_on_post_id ON favorites_29 USING btree (post_id); -- --- Name: index_favorites_29_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_29_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_29_on_user_id ON favorites_29 USING btree (user_id); -- --- Name: index_favorites_2_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_2_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_2_on_post_id ON favorites_2 USING btree (post_id); -- --- Name: index_favorites_2_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_2_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_2_on_user_id ON favorites_2 USING btree (user_id); -- --- Name: index_favorites_30_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_30_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_30_on_post_id ON favorites_30 USING btree (post_id); -- --- Name: index_favorites_30_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_30_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_30_on_user_id ON favorites_30 USING btree (user_id); -- --- Name: index_favorites_31_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_31_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_31_on_post_id ON favorites_31 USING btree (post_id); -- --- Name: index_favorites_31_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_31_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_31_on_user_id ON favorites_31 USING btree (user_id); -- --- Name: index_favorites_32_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_32_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_32_on_post_id ON favorites_32 USING btree (post_id); -- --- Name: index_favorites_32_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_32_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_32_on_user_id ON favorites_32 USING btree (user_id); -- --- Name: index_favorites_33_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_33_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_33_on_post_id ON favorites_33 USING btree (post_id); -- --- Name: index_favorites_33_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_33_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_33_on_user_id ON favorites_33 USING btree (user_id); -- --- Name: index_favorites_34_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_34_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_34_on_post_id ON favorites_34 USING btree (post_id); -- --- Name: index_favorites_34_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_34_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_34_on_user_id ON favorites_34 USING btree (user_id); -- --- Name: index_favorites_35_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_35_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_35_on_post_id ON favorites_35 USING btree (post_id); -- --- Name: index_favorites_35_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_35_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_35_on_user_id ON favorites_35 USING btree (user_id); -- --- Name: index_favorites_36_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_36_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_36_on_post_id ON favorites_36 USING btree (post_id); -- --- Name: index_favorites_36_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_36_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_36_on_user_id ON favorites_36 USING btree (user_id); -- --- Name: index_favorites_37_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_37_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_37_on_post_id ON favorites_37 USING btree (post_id); -- --- Name: index_favorites_37_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_37_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_37_on_user_id ON favorites_37 USING btree (user_id); -- --- Name: index_favorites_38_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_38_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_38_on_post_id ON favorites_38 USING btree (post_id); -- --- Name: index_favorites_38_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_38_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_38_on_user_id ON favorites_38 USING btree (user_id); -- --- Name: index_favorites_39_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_39_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_39_on_post_id ON favorites_39 USING btree (post_id); -- --- Name: index_favorites_39_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_39_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_39_on_user_id ON favorites_39 USING btree (user_id); -- --- Name: index_favorites_3_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_3_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_3_on_post_id ON favorites_3 USING btree (post_id); -- --- Name: index_favorites_3_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_3_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_3_on_user_id ON favorites_3 USING btree (user_id); -- --- Name: index_favorites_40_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_40_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_40_on_post_id ON favorites_40 USING btree (post_id); -- --- Name: index_favorites_40_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_40_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_40_on_user_id ON favorites_40 USING btree (user_id); -- --- Name: index_favorites_41_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_41_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_41_on_post_id ON favorites_41 USING btree (post_id); -- --- Name: index_favorites_41_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_41_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_41_on_user_id ON favorites_41 USING btree (user_id); -- --- Name: index_favorites_42_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_42_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_42_on_post_id ON favorites_42 USING btree (post_id); -- --- Name: index_favorites_42_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_42_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_42_on_user_id ON favorites_42 USING btree (user_id); -- --- Name: index_favorites_43_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_43_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_43_on_post_id ON favorites_43 USING btree (post_id); -- --- Name: index_favorites_43_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_43_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_43_on_user_id ON favorites_43 USING btree (user_id); -- --- Name: index_favorites_44_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_44_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_44_on_post_id ON favorites_44 USING btree (post_id); -- --- Name: index_favorites_44_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_44_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_44_on_user_id ON favorites_44 USING btree (user_id); -- --- Name: index_favorites_45_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_45_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_45_on_post_id ON favorites_45 USING btree (post_id); -- --- Name: index_favorites_45_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_45_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_45_on_user_id ON favorites_45 USING btree (user_id); -- --- Name: index_favorites_46_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_46_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_46_on_post_id ON favorites_46 USING btree (post_id); -- --- Name: index_favorites_46_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_46_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_46_on_user_id ON favorites_46 USING btree (user_id); -- --- Name: index_favorites_47_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_47_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_47_on_post_id ON favorites_47 USING btree (post_id); -- --- Name: index_favorites_47_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_47_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_47_on_user_id ON favorites_47 USING btree (user_id); -- --- Name: index_favorites_48_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_48_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_48_on_post_id ON favorites_48 USING btree (post_id); -- --- Name: index_favorites_48_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_48_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_48_on_user_id ON favorites_48 USING btree (user_id); -- --- Name: index_favorites_49_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_49_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_49_on_post_id ON favorites_49 USING btree (post_id); -- --- Name: index_favorites_49_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_49_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_49_on_user_id ON favorites_49 USING btree (user_id); -- --- Name: index_favorites_4_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_4_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_4_on_post_id ON favorites_4 USING btree (post_id); -- --- Name: index_favorites_4_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_4_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_4_on_user_id ON favorites_4 USING btree (user_id); -- --- Name: index_favorites_50_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_50_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_50_on_post_id ON favorites_50 USING btree (post_id); -- --- Name: index_favorites_50_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_50_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_50_on_user_id ON favorites_50 USING btree (user_id); -- --- Name: index_favorites_51_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_51_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_51_on_post_id ON favorites_51 USING btree (post_id); -- --- Name: index_favorites_51_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_51_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_51_on_user_id ON favorites_51 USING btree (user_id); -- --- Name: index_favorites_52_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_52_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_52_on_post_id ON favorites_52 USING btree (post_id); -- --- Name: index_favorites_52_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_52_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_52_on_user_id ON favorites_52 USING btree (user_id); -- --- Name: index_favorites_53_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_53_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_53_on_post_id ON favorites_53 USING btree (post_id); -- --- Name: index_favorites_53_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_53_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_53_on_user_id ON favorites_53 USING btree (user_id); -- --- Name: index_favorites_54_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_54_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_54_on_post_id ON favorites_54 USING btree (post_id); -- --- Name: index_favorites_54_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_54_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_54_on_user_id ON favorites_54 USING btree (user_id); -- --- Name: index_favorites_55_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_55_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_55_on_post_id ON favorites_55 USING btree (post_id); -- --- Name: index_favorites_55_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_55_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_55_on_user_id ON favorites_55 USING btree (user_id); -- --- Name: index_favorites_56_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_56_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_56_on_post_id ON favorites_56 USING btree (post_id); -- --- Name: index_favorites_56_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_56_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_56_on_user_id ON favorites_56 USING btree (user_id); -- --- Name: index_favorites_57_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_57_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_57_on_post_id ON favorites_57 USING btree (post_id); -- --- Name: index_favorites_57_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_57_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_57_on_user_id ON favorites_57 USING btree (user_id); -- --- Name: index_favorites_58_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_58_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_58_on_post_id ON favorites_58 USING btree (post_id); -- --- Name: index_favorites_58_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_58_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_58_on_user_id ON favorites_58 USING btree (user_id); -- --- Name: index_favorites_59_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_59_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_59_on_post_id ON favorites_59 USING btree (post_id); -- --- Name: index_favorites_59_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_59_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_59_on_user_id ON favorites_59 USING btree (user_id); -- --- Name: index_favorites_5_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_5_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_5_on_post_id ON favorites_5 USING btree (post_id); -- --- Name: index_favorites_5_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_5_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_5_on_user_id ON favorites_5 USING btree (user_id); -- --- Name: index_favorites_60_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_60_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_60_on_post_id ON favorites_60 USING btree (post_id); -- --- Name: index_favorites_60_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_60_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_60_on_user_id ON favorites_60 USING btree (user_id); -- --- Name: index_favorites_61_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_61_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_61_on_post_id ON favorites_61 USING btree (post_id); -- --- Name: index_favorites_61_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_61_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_61_on_user_id ON favorites_61 USING btree (user_id); -- --- Name: index_favorites_62_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_62_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_62_on_post_id ON favorites_62 USING btree (post_id); -- --- Name: index_favorites_62_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_62_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_62_on_user_id ON favorites_62 USING btree (user_id); -- --- Name: index_favorites_63_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_63_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_63_on_post_id ON favorites_63 USING btree (post_id); -- --- Name: index_favorites_63_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_63_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_63_on_user_id ON favorites_63 USING btree (user_id); -- --- Name: index_favorites_64_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_64_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_64_on_post_id ON favorites_64 USING btree (post_id); -- --- Name: index_favorites_64_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_64_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_64_on_user_id ON favorites_64 USING btree (user_id); -- --- Name: index_favorites_65_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_65_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_65_on_post_id ON favorites_65 USING btree (post_id); -- --- Name: index_favorites_65_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_65_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_65_on_user_id ON favorites_65 USING btree (user_id); -- --- Name: index_favorites_66_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_66_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_66_on_post_id ON favorites_66 USING btree (post_id); -- --- Name: index_favorites_66_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_66_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_66_on_user_id ON favorites_66 USING btree (user_id); -- --- Name: index_favorites_67_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_67_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_67_on_post_id ON favorites_67 USING btree (post_id); -- --- Name: index_favorites_67_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_67_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_67_on_user_id ON favorites_67 USING btree (user_id); -- --- Name: index_favorites_68_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_68_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_68_on_post_id ON favorites_68 USING btree (post_id); -- --- Name: index_favorites_68_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_68_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_68_on_user_id ON favorites_68 USING btree (user_id); -- --- Name: index_favorites_69_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_69_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_69_on_post_id ON favorites_69 USING btree (post_id); -- --- Name: index_favorites_69_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_69_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_69_on_user_id ON favorites_69 USING btree (user_id); -- --- Name: index_favorites_6_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_6_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_6_on_post_id ON favorites_6 USING btree (post_id); -- --- Name: index_favorites_6_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_6_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_6_on_user_id ON favorites_6 USING btree (user_id); -- --- Name: index_favorites_70_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_70_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_70_on_post_id ON favorites_70 USING btree (post_id); -- --- Name: index_favorites_70_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_70_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_70_on_user_id ON favorites_70 USING btree (user_id); -- --- Name: index_favorites_71_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_71_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_71_on_post_id ON favorites_71 USING btree (post_id); -- --- Name: index_favorites_71_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_71_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_71_on_user_id ON favorites_71 USING btree (user_id); -- --- Name: index_favorites_72_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_72_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_72_on_post_id ON favorites_72 USING btree (post_id); -- --- Name: index_favorites_72_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_72_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_72_on_user_id ON favorites_72 USING btree (user_id); -- --- Name: index_favorites_73_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_73_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_73_on_post_id ON favorites_73 USING btree (post_id); -- --- Name: index_favorites_73_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_73_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_73_on_user_id ON favorites_73 USING btree (user_id); -- --- Name: index_favorites_74_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_74_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_74_on_post_id ON favorites_74 USING btree (post_id); -- --- Name: index_favorites_74_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_74_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_74_on_user_id ON favorites_74 USING btree (user_id); -- --- Name: index_favorites_75_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_75_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_75_on_post_id ON favorites_75 USING btree (post_id); -- --- Name: index_favorites_75_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_75_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_75_on_user_id ON favorites_75 USING btree (user_id); -- --- Name: index_favorites_76_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_76_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_76_on_post_id ON favorites_76 USING btree (post_id); -- --- Name: index_favorites_76_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_76_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_76_on_user_id ON favorites_76 USING btree (user_id); -- --- Name: index_favorites_77_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_77_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_77_on_post_id ON favorites_77 USING btree (post_id); -- --- Name: index_favorites_77_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_77_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_77_on_user_id ON favorites_77 USING btree (user_id); -- --- Name: index_favorites_78_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_78_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_78_on_post_id ON favorites_78 USING btree (post_id); -- --- Name: index_favorites_78_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_78_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_78_on_user_id ON favorites_78 USING btree (user_id); -- --- Name: index_favorites_79_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_79_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_79_on_post_id ON favorites_79 USING btree (post_id); -- --- Name: index_favorites_79_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_79_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_79_on_user_id ON favorites_79 USING btree (user_id); -- --- Name: index_favorites_7_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_7_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_7_on_post_id ON favorites_7 USING btree (post_id); -- --- Name: index_favorites_7_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_7_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_7_on_user_id ON favorites_7 USING btree (user_id); -- --- Name: index_favorites_80_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_80_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_80_on_post_id ON favorites_80 USING btree (post_id); -- --- Name: index_favorites_80_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_80_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_80_on_user_id ON favorites_80 USING btree (user_id); -- --- Name: index_favorites_81_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_81_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_81_on_post_id ON favorites_81 USING btree (post_id); -- --- Name: index_favorites_81_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_81_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_81_on_user_id ON favorites_81 USING btree (user_id); -- --- Name: index_favorites_82_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_82_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_82_on_post_id ON favorites_82 USING btree (post_id); -- --- Name: index_favorites_82_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_82_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_82_on_user_id ON favorites_82 USING btree (user_id); -- --- Name: index_favorites_83_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_83_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_83_on_post_id ON favorites_83 USING btree (post_id); -- --- Name: index_favorites_83_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_83_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_83_on_user_id ON favorites_83 USING btree (user_id); -- --- Name: index_favorites_84_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_84_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_84_on_post_id ON favorites_84 USING btree (post_id); -- --- Name: index_favorites_84_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_84_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_84_on_user_id ON favorites_84 USING btree (user_id); -- --- Name: index_favorites_85_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_85_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_85_on_post_id ON favorites_85 USING btree (post_id); -- --- Name: index_favorites_85_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_85_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_85_on_user_id ON favorites_85 USING btree (user_id); -- --- Name: index_favorites_86_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_86_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_86_on_post_id ON favorites_86 USING btree (post_id); -- --- Name: index_favorites_86_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_86_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_86_on_user_id ON favorites_86 USING btree (user_id); -- --- Name: index_favorites_87_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_87_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_87_on_post_id ON favorites_87 USING btree (post_id); -- --- Name: index_favorites_87_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_87_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_87_on_user_id ON favorites_87 USING btree (user_id); -- --- Name: index_favorites_88_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_88_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_88_on_post_id ON favorites_88 USING btree (post_id); -- --- Name: index_favorites_88_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_88_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_88_on_user_id ON favorites_88 USING btree (user_id); -- --- Name: index_favorites_89_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_89_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_89_on_post_id ON favorites_89 USING btree (post_id); -- --- Name: index_favorites_89_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_89_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_89_on_user_id ON favorites_89 USING btree (user_id); -- --- Name: index_favorites_8_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_8_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_8_on_post_id ON favorites_8 USING btree (post_id); -- --- Name: index_favorites_8_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_8_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_8_on_user_id ON favorites_8 USING btree (user_id); -- --- Name: index_favorites_90_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_90_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_90_on_post_id ON favorites_90 USING btree (post_id); -- --- Name: index_favorites_90_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_90_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_90_on_user_id ON favorites_90 USING btree (user_id); -- --- Name: index_favorites_91_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_91_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_91_on_post_id ON favorites_91 USING btree (post_id); -- --- Name: index_favorites_91_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_91_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_91_on_user_id ON favorites_91 USING btree (user_id); -- --- Name: index_favorites_92_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_92_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_92_on_post_id ON favorites_92 USING btree (post_id); -- --- Name: index_favorites_92_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_92_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_92_on_user_id ON favorites_92 USING btree (user_id); -- --- Name: index_favorites_93_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_93_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_93_on_post_id ON favorites_93 USING btree (post_id); -- --- Name: index_favorites_93_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_93_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_93_on_user_id ON favorites_93 USING btree (user_id); -- --- Name: index_favorites_94_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_94_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_94_on_post_id ON favorites_94 USING btree (post_id); -- --- Name: index_favorites_94_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_94_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_94_on_user_id ON favorites_94 USING btree (user_id); -- --- Name: index_favorites_95_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_95_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_95_on_post_id ON favorites_95 USING btree (post_id); -- --- Name: index_favorites_95_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_95_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_95_on_user_id ON favorites_95 USING btree (user_id); -- --- Name: index_favorites_96_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_96_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_96_on_post_id ON favorites_96 USING btree (post_id); -- --- Name: index_favorites_96_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_96_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_96_on_user_id ON favorites_96 USING btree (user_id); -- --- Name: index_favorites_97_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_97_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_97_on_post_id ON favorites_97 USING btree (post_id); -- --- Name: index_favorites_97_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_97_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_97_on_user_id ON favorites_97 USING btree (user_id); -- --- Name: index_favorites_98_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_98_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_98_on_post_id ON favorites_98 USING btree (post_id); -- --- Name: index_favorites_98_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_98_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_98_on_user_id ON favorites_98 USING btree (user_id); -- --- Name: index_favorites_99_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_99_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_99_on_post_id ON favorites_99 USING btree (post_id); -- --- Name: index_favorites_99_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_99_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_99_on_user_id ON favorites_99 USING btree (user_id); -- --- Name: index_favorites_9_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_9_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_9_on_post_id ON favorites_9 USING btree (post_id); -- --- Name: index_favorites_9_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_favorites_9_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_favorites_9_on_user_id ON favorites_9 USING btree (user_id); -- --- Name: index_forum_posts_on_creator_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_forum_posts_on_creator_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_forum_posts_on_creator_id ON forum_posts USING btree (creator_id); -- --- Name: index_forum_posts_on_text_index; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_forum_posts_on_text_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_forum_posts_on_text_index ON forum_posts USING gin (text_index); -- --- Name: index_forum_posts_on_topic_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_forum_posts_on_topic_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_forum_posts_on_topic_id ON forum_posts USING btree (topic_id); -- --- Name: index_forum_subscriptions_on_forum_topic_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_forum_subscriptions_on_forum_topic_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_forum_subscriptions_on_forum_topic_id ON forum_subscriptions USING btree (forum_topic_id); -- --- Name: index_forum_subscriptions_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_forum_subscriptions_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_forum_subscriptions_on_user_id ON forum_subscriptions USING btree (user_id); -- --- Name: index_forum_topic_visits_on_forum_topic_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_forum_topic_visits_on_forum_topic_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_forum_topic_visits_on_forum_topic_id ON forum_topic_visits USING btree (forum_topic_id); -- --- Name: index_forum_topic_visits_on_last_read_at; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_forum_topic_visits_on_last_read_at; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_forum_topic_visits_on_last_read_at ON forum_topic_visits USING btree (last_read_at); -- --- Name: index_forum_topic_visits_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_forum_topic_visits_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_forum_topic_visits_on_user_id ON forum_topic_visits USING btree (user_id); -- --- Name: index_forum_topics_on_creator_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_forum_topics_on_creator_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_forum_topics_on_creator_id ON forum_topics USING btree (creator_id); -- --- Name: index_forum_topics_on_text_index; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_forum_topics_on_text_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_forum_topics_on_text_index ON forum_topics USING gin (text_index); -- --- Name: index_forum_topics_on_updated_at; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_forum_topics_on_updated_at; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_forum_topics_on_updated_at ON forum_topics USING btree (updated_at); -- --- Name: index_ip_bans_on_ip_addr; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_ip_bans_on_ip_addr; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX index_ip_bans_on_ip_addr ON ip_bans USING btree (ip_addr); -- --- Name: index_janitor_trials_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_janitor_trials_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_janitor_trials_on_user_id ON janitor_trials USING btree (user_id); -- --- Name: index_key_values_on_key; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_key_values_on_key; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX index_key_values_on_key ON key_values USING btree (key); -- --- Name: index_news_updates_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_news_updates_on_created_at; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_news_updates_on_created_at ON news_updates USING btree (created_at); -- --- Name: index_note_versions_on_note_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_note_versions_on_note_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_note_versions_on_note_id ON note_versions USING btree (note_id); -- --- Name: index_note_versions_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_note_versions_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_note_versions_on_post_id ON note_versions USING btree (post_id); -- --- Name: index_note_versions_on_updater_id_and_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_note_versions_on_updater_id_and_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_note_versions_on_updater_id_and_post_id ON note_versions USING btree (updater_id, post_id); -- --- Name: index_note_versions_on_updater_ip_addr; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_note_versions_on_updater_ip_addr; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_note_versions_on_updater_ip_addr ON note_versions USING btree (updater_ip_addr); -- --- Name: index_notes_on_body_index; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_notes_on_body_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_notes_on_body_index ON notes USING gin (body_index); -- --- Name: index_notes_on_creator_id_and_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_notes_on_creator_id_and_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_notes_on_creator_id_and_post_id ON notes USING btree (creator_id, post_id); -- --- Name: index_notes_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_notes_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_notes_on_post_id ON notes USING btree (post_id); -- --- Name: index_pixiv_ugoira_frame_data_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_pixiv_ugoira_frame_data_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX index_pixiv_ugoira_frame_data_on_post_id ON pixiv_ugoira_frame_data USING btree (post_id); -- --- Name: index_pool_versions_on_pool_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_pool_versions_on_pool_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_pool_versions_on_pool_id ON pool_versions USING btree (pool_id); -- --- Name: index_pool_versions_on_updated_at; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_pool_versions_on_updated_at; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_pool_versions_on_updated_at ON pool_versions USING btree (updated_at); -- --- Name: index_pool_versions_on_updater_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_pool_versions_on_updater_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_pool_versions_on_updater_id ON pool_versions USING btree (updater_id); -- --- Name: index_pool_versions_on_updater_ip_addr; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_pool_versions_on_updater_ip_addr; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_pool_versions_on_updater_ip_addr ON pool_versions USING btree (updater_ip_addr); -- --- Name: index_pools_on_creator_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_pools_on_creator_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_pools_on_creator_id ON pools USING btree (creator_id); -- --- Name: index_pools_on_lower_name; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_pools_on_lower_name; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_pools_on_lower_name ON pools USING btree (lower((name)::text)); -- --- Name: index_pools_on_name; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_pools_on_name; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_pools_on_name ON pools USING btree (name); -- --- Name: index_pools_on_name_trgm; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_pools_on_name_trgm; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_pools_on_name_trgm ON pools USING gin (name gin_trgm_ops); -- --- Name: index_post_appeals_on_creator_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_post_appeals_on_creator_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_post_appeals_on_creator_id ON post_appeals USING btree (creator_id); -- --- Name: index_post_appeals_on_creator_ip_addr; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_post_appeals_on_creator_ip_addr; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_post_appeals_on_creator_ip_addr ON post_appeals USING btree (creator_ip_addr); -- --- Name: index_post_appeals_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_post_appeals_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_post_appeals_on_post_id ON post_appeals USING btree (post_id); -- --- Name: index_post_disapprovals_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_post_disapprovals_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_post_disapprovals_on_post_id ON post_disapprovals USING btree (post_id); -- --- Name: index_post_disapprovals_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_post_disapprovals_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_post_disapprovals_on_user_id ON post_disapprovals USING btree (user_id); -- --- Name: index_post_flags_on_creator_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_post_flags_on_creator_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_post_flags_on_creator_id ON post_flags USING btree (creator_id); -- --- Name: index_post_flags_on_creator_ip_addr; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_post_flags_on_creator_ip_addr; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_post_flags_on_creator_ip_addr ON post_flags USING btree (creator_ip_addr); -- --- Name: index_post_flags_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_post_flags_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_post_flags_on_post_id ON post_flags USING btree (post_id); -- --- Name: index_post_versions_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_post_versions_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_post_versions_on_post_id ON post_versions USING btree (post_id); -- --- Name: index_post_versions_on_updated_at_and_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_post_versions_on_updated_at_and_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_post_versions_on_updated_at_and_id ON post_versions USING btree (updated_at, id); -- --- Name: index_post_versions_on_updater_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_post_versions_on_updater_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_post_versions_on_updater_id ON post_versions USING btree (updater_id); -- --- Name: index_post_versions_on_updater_ip_addr; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_post_versions_on_updater_ip_addr; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_post_versions_on_updater_ip_addr ON post_versions USING btree (updater_ip_addr); -- --- Name: index_post_votes_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_post_votes_on_post_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_post_votes_on_post_id ON post_votes USING btree (post_id); -- --- Name: index_post_votes_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_post_votes_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_post_votes_on_user_id ON post_votes USING btree (user_id); -- --- Name: index_posts_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_posts_on_created_at; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_posts_on_created_at ON posts USING btree (created_at); -- --- Name: index_posts_on_file_size; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_posts_on_file_size; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_posts_on_file_size ON posts USING btree (file_size); -- --- Name: index_posts_on_image_height; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_posts_on_image_height; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_posts_on_image_height ON posts USING btree (image_height); -- --- Name: index_posts_on_image_width; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_posts_on_image_width; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_posts_on_image_width ON posts USING btree (image_width); -- --- Name: index_posts_on_last_comment_bumped_at; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_posts_on_last_comment_bumped_at; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_posts_on_last_comment_bumped_at ON posts USING btree (last_comment_bumped_at); -- --- Name: index_posts_on_last_noted_at; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_posts_on_last_noted_at; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_posts_on_last_noted_at ON posts USING btree (last_noted_at); -- --- Name: index_posts_on_md5; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_posts_on_md5; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX index_posts_on_md5 ON posts USING btree (md5); -- --- Name: index_posts_on_mpixels; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_posts_on_mpixels; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_posts_on_mpixels ON posts USING btree (((((image_width * image_height))::numeric / 1000000.0))); -- --- Name: index_posts_on_parent_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_posts_on_parent_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_posts_on_parent_id ON posts USING btree (parent_id); -- --- Name: index_posts_on_pixiv_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_posts_on_pixiv_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_posts_on_pixiv_id ON posts USING btree (pixiv_id) WHERE (pixiv_id IS NOT NULL); -- --- Name: index_posts_on_source_pattern; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_posts_on_source_pattern; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_posts_on_source_pattern ON posts USING btree (sourcepattern(lower((source)::text)) text_pattern_ops); -- --- Name: index_posts_on_tags_index; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_posts_on_tags_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_posts_on_tags_index ON posts USING gin (tag_index); -- --- Name: index_posts_on_uploader_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_posts_on_uploader_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_posts_on_uploader_id ON posts USING btree (uploader_id); -- --- Name: index_saved_searches_on_category; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_saved_searches_on_category; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_saved_searches_on_category ON saved_searches USING btree (category); -- --- Name: index_saved_searches_on_tag_query; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_saved_searches_on_tag_query; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_saved_searches_on_tag_query ON saved_searches USING btree (tag_query); -- --- Name: index_saved_searches_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_saved_searches_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_saved_searches_on_user_id ON saved_searches USING btree (user_id); -- --- Name: index_tag_aliases_on_antecedent_name; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_tag_aliases_on_antecedent_name; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_tag_aliases_on_antecedent_name ON tag_aliases USING btree (antecedent_name); -- --- Name: index_tag_aliases_on_antecedent_name_pattern; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_tag_aliases_on_antecedent_name_pattern; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_tag_aliases_on_antecedent_name_pattern ON tag_aliases USING btree (antecedent_name text_pattern_ops); -- --- Name: index_tag_aliases_on_consequent_name; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_tag_aliases_on_consequent_name; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_tag_aliases_on_consequent_name ON tag_aliases USING btree (consequent_name); -- --- Name: index_tag_aliases_on_post_count; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_tag_aliases_on_post_count; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_tag_aliases_on_post_count ON tag_aliases USING btree (post_count); -- --- Name: index_tag_implications_on_antecedent_name; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_tag_implications_on_antecedent_name; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_tag_implications_on_antecedent_name ON tag_implications USING btree (antecedent_name); -- --- Name: index_tag_implications_on_consequent_name; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_tag_implications_on_consequent_name; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_tag_implications_on_consequent_name ON tag_implications USING btree (consequent_name); -- --- Name: index_tag_subscriptions_on_creator_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_tag_subscriptions_on_creator_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_tag_subscriptions_on_creator_id ON tag_subscriptions USING btree (creator_id); -- --- Name: index_tag_subscriptions_on_name; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_tag_subscriptions_on_name; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_tag_subscriptions_on_name ON tag_subscriptions USING btree (name); -- --- Name: index_tags_on_name; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_tags_on_name; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX index_tags_on_name ON tags USING btree (name); -- --- Name: index_tags_on_name_pattern; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_tags_on_name_pattern; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_tags_on_name_pattern ON tags USING btree (name text_pattern_ops); -- --- Name: index_transaction_log_items_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_transaction_log_items_on_created_at; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_transaction_log_items_on_created_at ON transaction_log_items USING btree (created_at); -- --- Name: index_transaction_log_items_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_transaction_log_items_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_transaction_log_items_on_user_id ON transaction_log_items USING btree (user_id); -- --- Name: index_uploads_on_uploader_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_uploads_on_uploader_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_uploads_on_uploader_id ON uploads USING btree (uploader_id); -- --- Name: index_uploads_on_uploader_ip_addr; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_uploads_on_uploader_ip_addr; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_uploads_on_uploader_ip_addr ON uploads USING btree (uploader_ip_addr); -- --- Name: index_user_feedback_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_user_feedback_on_created_at; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_user_feedback_on_created_at ON user_feedback USING btree (created_at); -- --- Name: index_user_feedback_on_creator_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_user_feedback_on_creator_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_user_feedback_on_creator_id ON user_feedback USING btree (creator_id); -- --- Name: index_user_feedback_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_user_feedback_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_user_feedback_on_user_id ON user_feedback USING btree (user_id); -- --- Name: index_user_name_change_requests_on_original_name; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_user_name_change_requests_on_original_name; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_user_name_change_requests_on_original_name ON user_name_change_requests USING btree (original_name); -- --- Name: index_user_name_change_requests_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_user_name_change_requests_on_user_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_user_name_change_requests_on_user_id ON user_name_change_requests USING btree (user_id); -- --- Name: index_users_on_email; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_users_on_email; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX index_users_on_email ON users USING btree (email); -- --- Name: index_users_on_last_ip_addr; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_users_on_last_ip_addr; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_users_on_last_ip_addr ON users USING btree (last_ip_addr) WHERE (last_ip_addr IS NOT NULL); -- --- Name: index_users_on_name; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_users_on_name; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX index_users_on_name ON users USING btree (lower((name)::text)); -- --- Name: index_wiki_page_versions_on_wiki_page_id; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_wiki_page_versions_on_wiki_page_id; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_wiki_page_versions_on_wiki_page_id ON wiki_page_versions USING btree (wiki_page_id); -- --- Name: index_wiki_pages_on_body_index_index; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_wiki_pages_on_body_index_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_wiki_pages_on_body_index_index ON wiki_pages USING gin (body_index); -- --- Name: index_wiki_pages_on_other_names_index; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_wiki_pages_on_other_names_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_wiki_pages_on_other_names_index ON wiki_pages USING gin (other_names_index); -- --- Name: index_wiki_pages_on_title; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_wiki_pages_on_title; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX index_wiki_pages_on_title ON wiki_pages USING btree (title); -- --- Name: index_wiki_pages_on_title_pattern; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: index_wiki_pages_on_title_pattern; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX index_wiki_pages_on_title_pattern ON wiki_pages USING btree (title text_pattern_ops); -- --- Name: unique_schema_migrations; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- Name: unique_schema_migrations; Type: INDEX; Schema: public; Owner: - -- CREATE UNIQUE INDEX unique_schema_migrations ON schema_migrations USING btree (version); @@ -7161,7 +7169,7 @@ CREATE TRIGGER trigger_wiki_pages_on_update_for_other_names BEFORE INSERT OR UPD -- PostgreSQL database dump complete -- -SET search_path TO "$user",public; +SET search_path TO "$user", public; INSERT INTO schema_migrations (version) VALUES ('20100204211522'); @@ -7381,3 +7389,5 @@ INSERT INTO schema_migrations (version) VALUES ('20160219172840'); INSERT INTO schema_migrations (version) VALUES ('20160222211328'); +INSERT INTO schema_migrations (version) VALUES ('20160526174848'); + diff --git a/test/unit/bulk_update_request_test.rb b/test/unit/bulk_update_request_test.rb index eb622bee0..1f84d25aa 100644 --- a/test/unit/bulk_update_request_test.rb +++ b/test/unit/bulk_update_request_test.rb @@ -14,7 +14,7 @@ class BulkUpdateRequestTest < ActiveSupport::TestCase should "create a forum topic" do assert_difference("ForumTopic.count", 1) do - BulkUpdateRequest.create(:title => "abc", :reason => "zzz", :script => "create alias aaa -> bbb") + BulkUpdateRequest.create(:title => "abc", :reason => "zzz", :script => "create alias aaa -> bbb", :skip_secondary_validations => true) end end