diff --git a/.github/workflows/e2e-tests-readonly.yml b/.github/workflows/e2e-tests-readonly.yml index 88f82ec9..4fbeeddb 100644 --- a/.github/workflows/e2e-tests-readonly.yml +++ b/.github/workflows/e2e-tests-readonly.yml @@ -9,9 +9,9 @@ jobs: postgres: image: postgres:12.2 env: - POSTGRES_USER: pinafore - POSTGRES_PASSWORD: pinafore - POSTGRES_DB: pinafore_development + POSTGRES_USER: semaphore + POSTGRES_PASSWORD: semaphore + POSTGRES_DB: semaphore_development POSTGRES_HOST: 127.0.0.1 POSTGRES_PORT: 5432 ports: diff --git a/.github/workflows/e2e-tests-readwrite.yml b/.github/workflows/e2e-tests-readwrite.yml index 03007e94..ef5426c0 100644 --- a/.github/workflows/e2e-tests-readwrite.yml +++ b/.github/workflows/e2e-tests-readwrite.yml @@ -9,9 +9,9 @@ jobs: postgres: image: postgres:12.2 env: - POSTGRES_USER: pinafore - POSTGRES_PASSWORD: pinafore - POSTGRES_DB: pinafore_development + POSTGRES_USER: semaphore + POSTGRES_PASSWORD: semaphore + POSTGRES_DB: semaphore_development POSTGRES_HOST: 127.0.0.1 POSTGRES_PORT: 5432 ports: diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c5b94bb5..9f9bcc22 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,4 +1,4 @@ -# Contributing to Pinafore +# Contributing to semaphore ## Installing @@ -20,7 +20,7 @@ because of [this issue](https://github.com/paulmillr/chokidar/issues/237). ## Linting -Pinafore uses [JavaScript Standard Style](https://standardjs.com/). +semaphore uses [JavaScript Standard Style](https://standardjs.com/). Lint: @@ -61,7 +61,7 @@ If the script isn't able to set up the Postgres database, try running: Then: - psql -d template1 -c "CREATE USER pinafore WITH PASSWORD 'pinafore' CREATEDB;" + psql -d template1 -c "CREATE USER semaphore WITH PASSWORD 'semaphore' CREATEDB;" ### Testing in development mode @@ -71,7 +71,7 @@ In separate terminals: yarn run run-mastodon -2\. Run a Pinafore dev server: +2\. Run a Semaphore dev server: yarn run dev @@ -148,18 +148,18 @@ To disable minification in a production build (for debugging purposes), you can The Webpack Bundle Analyzer `report.html` and `stats.json` are available publicly via e.g.: -- [dev.pinafore.social/report.html](https://dev.pinafore.social/report.html) -- [dev.pinafore.social/stats.json](https://dev.pinafore.social/stats.json) +- [dev.semaphore.social/report.html](https://dev.semaphore.social/report.html) +- [dev.semaphore.social/stats.json](https://dev.semaphore.social/stats.json) This is also available locally after `yarn run build` at `.sapper/client/report.html`. ## Deploying -This section only applies to `dev.pinafore.social` and `pinafore.social`, not if you're hosting your own version of -Pinafore. +This section only applies to `dev.semaphore.social` and `semaphore.social`, not if you're hosting your own version of +Semaphore. -The site uses [Vercel](https://vercel.com). The `master` branch publishes to `dev.pinafore.social` and the `production` -branch deploys to `pinafore.social`. +The site uses [Vercel](https://vercel.com). The `master` branch publishes to `dev.semaphore.social` and the `production` +branch deploys to `semaphore.social`. ## Architecture diff --git a/Dockerfile b/Dockerfile index 7a3a88ee..285bcf76 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ FROM node:16-alpine WORKDIR /app COPY . /app -# Install Pinafore +# Install Semaphore RUN yarn --production --pure-lockfile && \ yarn build && \ yarn cache clean && \ diff --git a/README.md b/README.md index 3c1b3a94..748f2bf0 100644 --- a/README.md +++ b/README.md @@ -6,28 +6,17 @@ Continuation of the [Pinafore project](https://github.com/nolanlawson/pinafore). Credit must go to Nolan and the original contributors for their excellent work. - -## What's with the name? - -Semaphore is a fork of Pinafore and apparently they were going to call the boat H.M.S Semaphore but thought Pinafore was more fun. -Bonus - semaphore is an old communication method. - -
-Original Pinafore readme - -_**Note:** Pinafore is unmaintained. Read [this](https://nolanlawson.com/2023/01/09/retiring-pinafore/). Original documentation follows._ - An alternative web client for [Mastodon](https://joinmastodon.org), focused on speed and simplicity. -Pinafore is available at [pinafore.social](https://pinafore.social). Beta releases are at [dev.pinafore.social](https://dev.pinafore.social). +Semaphore is available at [semaphore.social](https://semaphore.social). Beta releases are at [dev.semaphore.social](https://dev.semaphore.social). -See the [user guide](https://github.com/nolanlawson/pinafore/blob/master/docs/User-Guide.md) for basic usage. See the [admin guide](https://github.com/nolanlawson/pinafore/blob/master/docs/Admin-Guide.md) if Pinafore cannot connect to your instance. +See the [user guide](https://github.com/nolanlawson/semaphore/blob/master/docs/User-Guide.md) for basic usage. See the [admin guide](https://github.com/nolanlawson/semaphore/blob/master/docs/Admin-Guide.md) if Semaphore cannot connect to your instance. -For updates and support, follow [@pinafore@fosstodon.org](https://fosstodon.org/@pinafore). +For updates and support, follow [@semaphore@fosstodon.org](https://fosstodon.org/@semaphore). ## Browser support -Pinafore supports the latest versions of the following browsers: +Semaphore supports the latest versions of the following browsers: - Chrome - Edge @@ -69,9 +58,9 @@ Compatible versions of each (Opera, Brave, Samsung, etc.) should be fine. ## Building -Pinafore requires [Node.js](https://nodejs.org/en/) and [Yarn](https://yarnpkg.com). +Semaphore requires [Node.js](https://nodejs.org/en/) and [Yarn](https://yarnpkg.com). -To build Pinafore for production, first install dependencies: +To build Semaphore for production, first install dependencies: yarn --production --pure-lockfile @@ -90,7 +79,7 @@ To build a Docker image for production: docker build . docker run -d -p 4002:4002 [your-image] -Now Pinafore is running at `localhost:4002`. +Now Semaphore is running at `localhost:4002`. ### docker-compose @@ -102,13 +91,13 @@ The image will build and start, then detach from the terminal running at `localh ### Updating -To keep your version of Pinafore up to date, you can use `git` to check out the latest tag: +To keep your version of Semaphore up to date, you can use `git` to check out the latest tag: git checkout $(git tag -l | sort -Vr | head -n 1) ### Exporting -Pinafore is a static site. When you run `yarn build`, static files will be +Semaphore is a static site. When you run `yarn build`, static files will be written to `__sapper__/export`. It is _not_ recommended to directly expose these files when self-hosting. Instead, you should use `node server.js` (e.g. with an @@ -117,21 +106,21 @@ nginx or Apache proxy in front). This adds several things you don't get from the - [CSP headers](https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP) (important for security) - Certain dynamic routes (less important because of Service Worker managing routing, but certain things could break if Service Workers are disabled in the user's browser) -Having an [nginx config generator](https://github.com/nolanlawson/pinafore/issues/1878) is currently an open issue. +Having an [nginx config generator](https://github.com/nolanlawson/semaphore/issues/1878) is currently an open issue. ## Developing and testing -See [CONTRIBUTING.md](https://github.com/nolanlawson/pinafore/blob/master/CONTRIBUTING.md) for -how to run Pinafore in dev mode and run tests. +See [CONTRIBUTING.md](https://github.com/nolanlawson/semaphore/blob/master/CONTRIBUTING.md) for +how to run Semaphore in dev mode and run tests. ## Changelog -For a changelog, see the [GitHub releases](http://github.com/nolanlawson/pinafore/releases/). +For a changelog, see the [GitHub releases](http://github.com/nolanlawson/semaphore/releases/). + +For a list of breaking changes, see [BREAKING_CHANGES.md](https://github.com/nolanlawson/semaphore/blob/master/BREAKING_CHANGES.md). -For a list of breaking changes, see [BREAKING_CHANGES.md](https://github.com/nolanlawson/pinafore/blob/master/BREAKING_CHANGES.md). ## What's with the name? -Pinafore is named after the [Gilbert and Sullivan play](https://en.wikipedia.org/wiki/Hms_pinafore). The [soundtrack](https://www.allmusic.com/album/gilbert-sullivan-hms-pinafore-1949-mw0001830483) is very good. - - +Semaphore is a fork of Pinafore and apparently they were going to call the boat H.M.S Semaphore but thought Pinafore was more fun. +Bonus - semaphore is an old communication method. diff --git a/bin/backup-mastodon-data.sh b/bin/backup-mastodon-data.sh index ef217e49..6a05ad8e 100755 --- a/bin/backup-mastodon-data.sh +++ b/bin/backup-mastodon-data.sh @@ -3,6 +3,6 @@ set -x set -e -PGPASSWORD=pinafore pg_dump -U pinafore -w pinafore_development -h 127.0.0.1 > tests/fixtures/dump.sql +PGPASSWORD=semaphore pg_dump -U semaphore -w semaphore_development -h 127.0.0.1 > tests/fixtures/dump.sql cd mastodon/public/system tar -czf ../../../tests/fixtures/system.tgz . diff --git a/bin/mastodon-config.js b/bin/mastodon-config.js index 144839bd..1bb30c67 100644 --- a/bin/mastodon-config.js +++ b/bin/mastodon-config.js @@ -1,8 +1,8 @@ import path from 'path' -export const DB_NAME = 'pinafore_development' -export const DB_USER = 'pinafore' -export const DB_PASS = 'pinafore' +export const DB_NAME = 'semaphore_development' +export const DB_USER = 'semaphore' +export const DB_PASS = 'semaphore' export const DB_PORT = process.env.PGPORT || 5432 export const DB_HOST = '127.0.0.1' diff --git a/bin/print-export-info.js b/bin/print-export-info.js index 7b8800b0..ac9d7721 100644 --- a/bin/print-export-info.js +++ b/bin/print-export-info.js @@ -24,5 +24,5 @@ Export successful! Static files are in: __sapper__/export/ -Enjoy Pinafore! +Enjoy Semaphore! `) diff --git a/bin/svgs.js b/bin/svgs.js index 3d828bba..002b4d3c 100644 --- a/bin/svgs.js +++ b/bin/svgs.js @@ -1,5 +1,5 @@ export default [ - { id: 'pinafore-logo', src: 'src/static/sailboat.svg', inline: true }, + { id: 'semaphore-logo', src: 'src/static/sailboat.svg', inline: true }, { id: 'fa-arrow-left', src: 'src/thirdparty/font-awesome-svg-png/white/svg/arrow-left.svg' }, { id: 'fa-bell', src: 'src/thirdparty/font-awesome-svg-png/white/svg/bell.svg', inline: true }, { id: 'fa-bell-o', src: 'src/thirdparty/font-awesome-svg-png/white/svg/bell-o.svg' }, diff --git a/docker-compose.yml b/docker-compose.yml index 6b6c9ac6..1e3fc478 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,11 +1,11 @@ --- version: "3" services: - pinafore: + semaphore: restart: unless-stopped build: context: . dockerfile: Dockerfile - image: pinafore:latest + image: semaphore:latest ports: - 4002:4002 diff --git a/docs/Admin-Guide.md b/docs/Admin-Guide.md index 0ca28bed..8a206d1b 100644 --- a/docs/Admin-Guide.md +++ b/docs/Admin-Guide.md @@ -1,14 +1,14 @@ Admin Guide ==== -This guide is for instance admins who may be having trouble with Pinafore compatibility. +This guide is for instance admins who may be having trouble with Semaphore compatibility. -By default, [Mastodon allows cross-origin access to the `/api` endpoint](https://github.com/tootsuite/mastodon/blob/50529cbceb84e611bca497624a7a4c38113e5135/config/initializers/cors.rb#L15-L20). Thus Pinafore should "just work" for most Mastodon servers. +By default, [Mastodon allows cross-origin access to the `/api` endpoint](https://github.com/tootsuite/mastodon/blob/50529cbceb84e611bca497624a7a4c38113e5135/config/initializers/cors.rb#L15-L20). Thus Semaphore should "just work" for most Mastodon servers. -If the nginx/Apache settings have been changed, though, then Pinafore might not be able to connect to an instance. To check if the instance is supported, run this command (replacing `myinstance.com` with your instance URL): +If the nginx/Apache settings have been changed, though, then Semaphore might not be able to connect to an instance. To check if the instance is supported, run this command (replacing `myinstance.com` with your instance URL): ```bash -curl -sLv -H 'Origin: https://pinafore.social' -o /dev/null \ +curl -sLv -H 'Origin: https://semaphore.social' -o /dev/null \ myinstance.com/api/v1/instance ``` @@ -18,12 +18,12 @@ If you see this in the output: Access-Control-Allow-Origin: * ``` -Then Pinafore should work as expected! +Then Semaphore should work as expected! -Otherwise, if the instance admin would like to whitelist only certain websites (including Pinafore) to work with CORS, then they will need to make sure that the server echoes: +Otherwise, if the instance admin would like to whitelist only certain websites (including Semaphore) to work with CORS, then they will need to make sure that the server echoes: ``` -Access-Control-Allow-Origin: https://pinafore.social +Access-Control-Allow-Origin: https://semaphore.social ``` -when Pinafore tries to access it. Note that this is a bit complicated to configure (compared to the simpler `*` approach), but [there are instructions on StackOverflow](https://stackoverflow.com/q/1653308) for nginx, Apache, and other servers. +when Semaphore tries to access it. Note that this is a bit complicated to configure (compared to the simpler `*` approach), but [there are instructions on StackOverflow](https://stackoverflow.com/q/1653308) for nginx, Apache, and other servers. diff --git a/docs/Architecture.md b/docs/Architecture.md index 955ddd44..255247a1 100644 --- a/docs/Architecture.md +++ b/docs/Architecture.md @@ -5,16 +5,16 @@ Basically think of it as a "lay of the land" as well as "weird unusual stuff tha ## Overview -Pinafore uses [SvelteJS](https://svelte.technology) v2 and [SapperJS](https://sapper.svelte.technology). Most of it is a fairly typical Svelte/Sapper project, but there +Semaphore uses [SvelteJS](https://svelte.technology) v2 and [SapperJS](https://sapper.svelte.technology). Most of it is a fairly typical Svelte/Sapper project, but there are some quirks, which are described below. This list of quirks is non-exhaustive. ## Why Svelte v2 / Sapper ? -There is [no upgrade path from Svelte v2 to v3](https://github.com/sveltejs/svelte/issues/2462). Doing so would require manually migrating every component over. And in the end, it would probably not change the UX (user experience) of Pinafore – only the DX (developer experience). +There is [no upgrade path from Svelte v2 to v3](https://github.com/sveltejs/svelte/issues/2462). Doing so would require manually migrating every component over. And in the end, it would probably not change the UX (user experience) of Semaphore – only the DX (developer experience). -Similarly, [Sapper would need to be migrated to SvelteKit](https://kit.svelte.dev/docs/migrating). Since Pinafore generates static files, there is probably not much benefit in moving from Sapper to SvelteKit. +Similarly, [Sapper would need to be migrated to SvelteKit](https://kit.svelte.dev/docs/migrating). Since Semaphore generates static files, there is probably not much benefit in moving from Sapper to SvelteKit. -For this reason, Pinafore has been stuck on Svelte v2 and Sapper for a long time. Migrating it is not something I've considered. The [v2 Svelte docs](https://v2.svelte.dev/) are still online, and share many similarities with Svelte v3. +For this reason, Semaphore has been stuck on Svelte v2 and Sapper for a long time. Migrating it is not something I've considered. The [v2 Svelte docs](https://v2.svelte.dev/) are still online, and share many similarities with Svelte v3. ## Prebuild process @@ -37,7 +37,7 @@ as a bundled custom element, not as a Svelte component. For various reasons, `a11y-dialog`, `autosize`, and `timeago` are forked and bundled into the source code. This was either because something needed to be tweaked or fixed, or I was trimming unused code and didn't -see much value in contributing it back, because it was too Pinafore-specific. +see much value in contributing it back, because it was too Semaphore-specific. ## Every Sapper page is "duplicated" diff --git a/docs/Internationalization.md b/docs/Internationalization.md index 241c6999..12c278e8 100644 --- a/docs/Internationalization.md +++ b/docs/Internationalization.md @@ -1,6 +1,6 @@ # Internationalization -To contribute or change translations for Pinafore, look in the [src/intl](https://github.com/semaphore-social/semaphore/tree/master/src/intl) directory. Create a new file or edit an existing file based on its [two-letter language code](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) and optionally, a region. For instance, `en-US.js` is American English, and `fr.js` is French. +To contribute or change translations for Semaphore, look in the [src/intl](https://github.com/semaphore-social/semaphore/tree/master/src/intl) directory. Create a new file or edit an existing file based on its [two-letter language code](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) and optionally, a region. For instance, `en-US.js` is American English, and `fr.js` is French. The default is `en-US.js`, and any strings not defined in a language file will fall back to the strings from that file. @@ -8,7 +8,7 @@ There is also an `intl/emoji-picker` directory, which contains translations for (which already comes with English built-in). Note that internationalization is currently experimental. Client-side locale switching is not supported – when you build -the instance of Pinafore, it is either one language or another. To build in a particular language, use (for example): +the instance of Semaphore, it is either one language or another. To build in a particular language, use (for example): LOCALE=fr yarn build @@ -16,4 +16,4 @@ or LOCALE=fr yarn dev -To host a localized version of Pinafore using Vercel, you can see this example: [buildCommand in vercel.json for Spanish](https://github.com/nvdaes/vercelPinafore/blob/45c70fb2088fe5f2380a729dab83e6f3ab4e6291/vercel.json#L9). \ No newline at end of file +To host a localized version of Semaphore using Vercel, you can see this example: [buildCommand in vercel.json for Spanish](https://github.com/nvdaes/vercelPinafore/blob/45c70fb2088fe5f2380a729dab83e6f3ab4e6291/vercel.json#L9). \ No newline at end of file diff --git a/docs/Theming.md b/docs/Theming.md index c1157ea2..4636fc6e 100644 --- a/docs/Theming.md +++ b/docs/Theming.md @@ -1,6 +1,6 @@ ## Theming -This document describes how to write your own theme for Pinafore. +This document describes how to write your own theme for Semaphore. First, create a file `scss/themes/foobar.scss`, write some SCSS inside and add the following at the bottom of `scss/themes/foobar.scss`. diff --git a/docs/User-Guide.md b/docs/User-Guide.md index 5e234565..046aefc0 100644 --- a/docs/User-Guide.md +++ b/docs/User-Guide.md @@ -1,6 +1,6 @@ -# Pinafore user guide +# Semaphore user guide -This will walk you through the basic usage of Pinafore and its major differences with the Mastodon web UI. +This will walk you through the basic usage of Semaphore and its major differences with the Mastodon web UI. * [Home page](#home-page) * [Community page](#community-page) diff --git a/package.json b/package.json index d9af4408..27e01395 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "pinafore", + "name": "semaphore", "description": "Alternative web client for Mastodon", "version": "2.6.0", "type": "module", diff --git a/src/build/template.html b/src/build/template.html index ba965f27..214a5ec3 100644 --- a/src/build/template.html +++ b/src/build/template.html @@ -28,7 +28,7 @@ - + diff --git a/src/intl/de.js b/src/intl/de.js index 2ab31860..d87c7136 100644 --- a/src/intl/de.js +++ b/src/intl/de.js @@ -1,10 +1,10 @@ export default { // Home page, basic and <description> - appName: 'Pinafore', + appName: 'Semaphore', appDescription: 'Ein alternativer Web Client für Mastodon, der auf Geschwindigkeit und einfache Bedienung ausgelegt ist.', homeDescription: ` <p> - Pinafore ist ein Web Client für + Semaphore ist ein Web Client für <a rel="noopener" target="_blank" href="https://joinmastodon.org">Mastodon</a>, der für Geschwindigkeit und einfache Bedienung konzipiert wurde. </p> @@ -17,7 +17,7 @@ export default { logIn: 'Anmelden', footer: ` <p> - Pinafore ist + Semaphore ist <a rel="noopener" target="_blank" href="https://github.com/semaphore-social/semaphore">quelloffene Software</a>, erstellt von <a rel="noopener" target="_blank" href="https://nolanlawson.com">Nolan Lawson</a> und verteilt unter der @@ -174,7 +174,7 @@ export default { · {showInstanceName, select, true {{instanceName}} - other {Pinafore} + other {Semaphore} } `, pinLabel: `{label} {pinnable, select, @@ -315,10 +315,10 @@ export default { profilePageForAccount: 'Profilseite für {account}', // About page about: 'Über', - aboutApp: 'Über Pinafore', + aboutApp: 'Über Semaphore', aboutAppDescription: ` <p> - Pinafore ist + Semaphore ist <a rel="noopener" target="_blank" href="https://github.com/semaphore-social/semaphore">freie und quelloffene Software</a> erstellt von @@ -331,13 +331,13 @@ export default { <h2 id="privacy-policy">Datenschutzerklärung</h2> <p> - Pinafore speichert keine persönlichen Informationen auf seinen Servern, + Semaphore speichert keine persönlichen Informationen auf seinen Servern, einschließlich, aber nicht beschränkt auf, Namen, E-Mail-Adressen, IP-Adressen, Beiträgen, und Fotos. </p> <p> - Pinafore ist eine statische Seite. Alle Daten werden lokal in Ihrem Browser gespeichert und mit den Instanzen des Fediversums geteilt, zu denen Sie sich verbinden. + Semaphore ist eine statische Seite. Alle Daten werden lokal in Ihrem Browser gespeichert und mit den Instanzen des Fediversums geteilt, zu denen Sie sich verbinden. </p> <h2>Mitwirkende</h2> @@ -406,7 +406,7 @@ export default { notificationFilters: 'Filter für Benachrichtigungen', pushNotifications: 'Push-Benachrichtigungen', // Add instance page - storageError: 'Es sieht so aus als ob Pinafore lokal keine Daten speichern kann. Ist Dein Browser im privaten Modus oder blockiert Cookies? Pinafore speichert alle Daten lokal und braucht zum ordnungsgemäßen Betrieb LocalStorage und IndexedDB.', + storageError: 'Es sieht so aus als ob Semaphore lokal keine Daten speichern kann. Ist Dein Browser im privaten Modus oder blockiert Cookies? Semaphore speichert alle Daten lokal und braucht zum ordnungsgemäßen Betrieb LocalStorage und IndexedDB.', javaScriptError: 'Du musst zum Einloggen javaScript einschalten.', enterInstanceName: 'Namen der Instanz eingeben', instanceColon: 'Instanz:', @@ -426,7 +426,7 @@ export default { // Link text logInToAnInstancePre: '', logInToAnInstanceText: 'Melde Dich bei einer Instanz an', - logInToAnInstancePost: 'um Pinafore zu verwenden.', + logInToAnInstancePost: 'um Semaphore zu verwenden.', // Another custom tooltip showRingPre: 'Immer einen', showRingText: 'Fokusring', diff --git a/src/intl/en-US.js b/src/intl/en-US.js index 223f856c..7fcca156 100644 --- a/src/intl/en-US.js +++ b/src/intl/en-US.js @@ -1,10 +1,10 @@ export default { // Home page, basic <title> and <description> - appName: 'Pinafore', + appName: 'Semaphore', appDescription: 'An alternative web client for Mastodon, focused on speed and simplicity.', homeDescription: ` <p> - Pinafore is a web client for + Semaphore is a web client for <a rel="noopener" target="_blank" href="https://joinmastodon.org">Mastodon</a>, designed for speed and simplicity. </p> @@ -17,7 +17,7 @@ export default { logIn: 'Log in', footer: ` <p> - Pinafore is + Semaphore is <a rel="noopener" target="_blank" href="https://github.com/semaphore-social/semaphore">open-source software</a> created by <a rel="noopener" target="_blank" href="https://nolanlawson.com">Nolan Lawson</a> @@ -28,7 +28,7 @@ export default { </p> `, // Manifest - longAppName: 'Pinafore for Mastodon', + longAppName: 'Semaphore for Mastodon', newStatus: 'New toot', // Generic UI loading: 'Loading', @@ -180,7 +180,7 @@ export default { · {showInstanceName, select, true {{instanceName}} - other {Pinafore} + other {Semaphore} } `, pinLabel: `{label} {pinnable, select, @@ -327,10 +327,10 @@ export default { profilePageForAccount: 'Profile page for {account}', // About page about: 'About', - aboutApp: 'About Pinafore', + aboutApp: 'About Semaphore', aboutAppDescription: ` <p> - Pinafore is + Semaphore is <a rel="noopener" target="_blank" href="https://github.com/semaphore-social/semaphore">free and open-source software</a> created by @@ -343,13 +343,13 @@ export default { <h2 id="privacy-policy">Privacy Policy</h2> <p> - Pinafore does not store any personal information on its servers, + Semaphore does not store any personal information on its servers, including but not limited to names, email addresses, IP addresses, posts, and photos. </p> <p> - Pinafore is a static site. All data is stored locally in your browser and shared with the fediverse + Semaphore is a static site. All data is stored locally in your browser and shared with the fediverse instance(s) you connect to. </p> @@ -427,8 +427,8 @@ export default { notificationFilters: 'Notification filters', pushNotifications: 'Push notifications', // Add instance page - storageError: `It seems Pinafore cannot store data locally. Is your browser in private mode - or blocking cookies? Pinafore stores all data locally, and requires LocalStorage and + storageError: `It seems Semaphore cannot store data locally. Is your browser in private mode + or blocking cookies? Semaphore stores all data locally, and requires LocalStorage and IndexedDB to work correctly.`, javaScriptError: 'You must enable JavaScript to log in.', enterInstanceName: 'Enter instance name', @@ -449,7 +449,7 @@ export default { // Link text logInToAnInstancePre: '', logInToAnInstanceText: 'Log in to an instance', - logInToAnInstancePost: 'to start using Pinafore.', + logInToAnInstancePost: 'to start using Semaphore.', // Another custom tooltip showRingPre: 'Always show', showRingText: 'focus ring', diff --git a/src/intl/es.js b/src/intl/es.js index cb4a3954..185a85ef 100644 --- a/src/intl/es.js +++ b/src/intl/es.js @@ -1,10 +1,10 @@ export default { // Home page, basic <title> and <description> - appName: 'Pinafore', + appName: 'Semaphore', appDescription: 'Un cliente web alternativo para Mastodon, centrado en la velocidad y la sencillez.', homeDescription: ` <p> - Pinafore es un cliente web para + Semaphore es un cliente web para <a rel="noopener" target="_blank" href="https://joinmastodon.org">Mastodon</a>, diseñado para ser rápido y sencillo. </p> @@ -17,7 +17,7 @@ export default { logIn: 'Iniciar sesión', footer: ` <p> - Pinafore es + Semaphore es <a rel="noopener" target="_blank" href="https://github.com/semaphore-social/semaphore">software de código abierto</a> creado por <a rel="noopener" target="_blank" href="https://nolanlawson.com">Nolan Lawson</a> @@ -28,7 +28,7 @@ export default { </p> `, // Manifest - longAppName: 'Pinafore para Mastodon', + longAppName: 'Semaphore para Mastodon', newStatus: 'Nuevo toot', // Generic UI loading: 'Cargando', @@ -180,7 +180,7 @@ export default { · {showInstanceName, select, true {{instanceName}} - other {Pinafore} + other {Semaphore} } `, pinLabel: `{label} {pinnable, select, @@ -327,10 +327,10 @@ export default { profilePageForAccount: 'Página de perfil para {account}', // About page about: 'Acerca de', - aboutApp: 'Acerca de Pinafore', + aboutApp: 'Acerca de Semaphore', aboutAppDescription: ` <p> - Pinafore es + Semaphore es <a rel="noopener" target="_blank" href="https://github.com/semaphore-social/semaphore">software libre y de código abierto</a> creado por @@ -343,13 +343,13 @@ export default { <h2 id="privacy-policy">Política de privacidad</h2> <p> - Pinafore no almacena ninguna información personal en sus servidores, + Semaphore no almacena ninguna información personal en sus servidores, incluyendo, pero no limitándose a nombres, direcciones de correo electrónico, direcciones IP, posts y fotos. </p> <p> - Pinafore es un sitio estático. Todos los datos son almacenados en tu navegador y compartidos con las instancias del fediverso + Semaphore es un sitio estático. Todos los datos son almacenados en tu navegador y compartidos con las instancias del fediverso a las que te conectas. </p> @@ -425,8 +425,8 @@ export default { notificationFilters: 'Filtros para notificaciones', pushNotifications: 'Notificaciones Push', // Add instance page - storageError: `Parece que Pinafore no puede almacenar datos localmente. ¿Está tu navegador en modo privado - o bloqueando las cookies? Pinafore almacena todos los datos localmente, y requiere LocalStorage e + storageError: `Parece que Semaphore no puede almacenar datos localmente. ¿Está tu navegador en modo privado + o bloqueando las cookies? Semaphore almacena todos los datos localmente, y requiere LocalStorage e IndexedDB para funcionar correctamente.`, javaScriptError: 'Debes habilitar JavaScript para iniciar sesión.', enterInstanceName: 'Introducir nombre de instancia', @@ -447,7 +447,7 @@ export default { // Link text logInToAnInstancePre: '', logInToAnInstanceText: 'Inicia sesión en una instancia', - logInToAnInstancePost: 'para empezar a usar Pinafore.', + logInToAnInstancePost: 'para empezar a usar Semaphore.', // Another custom tooltip showRingPre: 'Mostrar siempre', showRingText: 'anillo del foco', diff --git a/src/intl/fr.js b/src/intl/fr.js index fda8053e..cd9deee0 100644 --- a/src/intl/fr.js +++ b/src/intl/fr.js @@ -1,10 +1,10 @@ export default { // Home page, basic <title> and <description> - appName: 'Pinafore', + appName: 'Semaphore', appDescription: 'Un client alternatif pour Mastodon, concentré sur la vitesse et la simplicité', homeDescription: ` <p> - Pinafore est un client web pour + Semaphore est un client web pour <a rel="noopener" target="_blank" href="https://joinmastodon.org">Mastodon</a>, dessiné pour la vitesse et la simplicité. </p> @@ -17,7 +17,7 @@ export default { logIn: 'Se connecter', footer: ` <p> - Pinafore est + Semaphore est <a rel="noopener" target="_blank" href="https://github.com/semaphore-social/semaphore">logiciel open-source</a> créé par <a rel="noopener" target="_blank" href="https://nolanlawson.com">Nolan Lawson</a> @@ -175,7 +175,7 @@ export default { · {showInstanceName, select, true {{instanceName}} - other {Pinafore} + other {Semaphore} } `, pinLabel: `{label} {pinnable, select, @@ -316,10 +316,10 @@ export default { profilePageForAccount: 'Page de profil pour {account}', // About page about: 'Infos', - aboutApp: 'Infos sur Pinafore', + aboutApp: 'Infos sur Semaphore', aboutAppDescription: ` <p> - Pinafore est un logiciel + Semaphore est un logiciel <a rel="noopener" target="_blank" href="https://github.com/semaphore-social/semaphore">gratuit et open-source</a> créé par @@ -332,12 +332,12 @@ export default { <h2 id="privacy-policy">Politique de confidentialité</h2> <p> - Pinafore ne garde pas d'informations personelles dans ses serveurs, + Semaphore ne garde pas d'informations personelles dans ses serveurs, y compris les noms, addresses courriel, addresses IP, messages, et photos. </p> <p> - Pinafore est un site statique. Tous données sont gardées en locale dans le navigateur, et sont partagée qu'avec + Semaphore est un site statique. Tous données sont gardées en locale dans le navigateur, et sont partagée qu'avec les instances auxquelles vous vous connectez. </p> @@ -409,8 +409,8 @@ export default { notificationFilters: 'Filtres de notifications', pushNotifications: 'Filtres de notifications push', // Add instance page - storageError: `Il semble que Pinafore ne peut pas stocker les données en locale. Est-ce que votre navigateur - est en mode privé, ou est-ce qu'il bloque les cookies? Pinafore garde tous ses données en locale et + storageError: `Il semble que Semaphore ne peut pas stocker les données en locale. Est-ce que votre navigateur + est en mode privé, ou est-ce qu'il bloque les cookies? Semaphore garde tous ses données en locale et ne peut pas fonctionner sans LocalStorage ou IndexedDB.`, javaScriptError: 'Le JavaScript devrait être activé pour continuer.', enterInstanceName: "Saisir le nom d'instance", @@ -431,7 +431,7 @@ export default { // Link text logInToAnInstancePre: '', logInToAnInstanceText: 'Se connecter à une instance', - logInToAnInstancePost: 'pour utiliser Pinafore.', + logInToAnInstancePost: 'pour utiliser Semaphore.', // Another custom tooltip showRingPre: 'Afficher toujours', showRingText: "l'anneau de focus", diff --git a/src/intl/ru-RU.JS b/src/intl/ru-RU.JS index 800b0155..6d7b3018 100644 --- a/src/intl/ru-RU.JS +++ b/src/intl/ru-RU.JS @@ -1,10 +1,10 @@ export default { // Home page, basic <title> and <description> - appName: 'Pinafore', + appName: 'Semaphore', appDescription: 'Альтернативный веб-клиент для Mastodon, ориентированный на скорость и простоту.', homeDescription: ` <p> - Pinafore — веб-клиент для + Semaphore — веб-клиент для <a rel="noopener" target="_blank" href="https://joinmastodon.org">Mastodon</a>, разработан для скорости и простоты. </p> @@ -17,7 +17,7 @@ export default { logIn: 'Войти', footer: ` <p> - Pinafore — это + Semaphore — это <a rel="noopener" target="_blank" href="https://github.com/semaphore-social/semaphore">программное обеспечение с открытым исходным кодом</a> созданное <a rel="noopener" target="_blank" href="https://nolanlawson.com">Ноланом Лоусоном</a> @@ -28,7 +28,7 @@ export default { </p> `, // Manifest - longAppName: 'Pinafore для Mastodon', + longAppName: 'Semaphore для Mastodon', newStatus: 'Новая запись', // Generic UI loading: 'Загрузка', @@ -176,7 +176,7 @@ export default { } {showInstanceName, select, true {{instanceName}} - other {Pinafore} + other {Semaphore} } · {name} @@ -325,10 +325,10 @@ export default { profilePageForAccount: 'Страница профиля для {account}', // About page about: 'О нас', - aboutApp: 'О Pinafore', + aboutApp: 'О Semaphore', aboutAppDescription: ` <p> - Pinafore — это + Semaphore — это <a rel="noopener" target="_blank" href="https://github.com/semaphore-social/semaphore">бесплатное программное обеспечение с открытым исходным кодом</a> создано @@ -341,13 +341,13 @@ export default { <h2 id="privacy-policy">Политика конфиденциальности</h2> <p> - Pinafore не хранит никакой личной информации на своих серверах, + Semaphore не хранит никакой личной информации на своих серверах, включая, помимо прочего, имена, адреса электронной почты, IP-адреса, сообщения и фотографии. </p> <p> - Pinafore — это статический сайт. Все данные хранятся локально в вашем браузере и передаются через Федиверс + Semaphore — это статический сайт. Все данные хранятся локально в вашем браузере и передаются через Федиверс инстансы, к которым вы подключаетесь. </p> @@ -424,8 +424,8 @@ export default { notificationFilters: 'Фильтры уведомлений', pushNotifications: 'Всплывающее уведомление', // Add instance page - storageError: `Похоже, Pinafore не может хранить данные локально. Ваш браузер находится в приватном режиме - или блокирует файлов cookie? Pinafore хранит все данные локально, и для этого требуется LocalStorage и + storageError: `Похоже, Semaphore не может хранить данные локально. Ваш браузер находится в приватном режиме + или блокирует файлов cookie? Semaphore хранит все данные локально, и для этого требуется LocalStorage и IndexedDB для корректной работы.`, javaScriptError: 'Вы должны включить JavaScript, чтобы войти в систему.', enterInstanceName: 'Введите имя инстанса', @@ -446,7 +446,7 @@ export default { // Link text logInToAnInstancePre: '', logInToAnInstanceText: 'Войти в инстанс', - logInToAnInstancePost: 'чтобы начать использовать Pinafore.', + logInToAnInstancePost: 'чтобы начать использовать Semaphore.', // Another custom tooltip showRingPre: 'Всегда показывать', showRingText: 'кольцо фокусировки', diff --git a/src/routes/_api/oauth.js b/src/routes/_api/oauth.js index c3e13c03..c1c82491 100644 --- a/src/routes/_api/oauth.js +++ b/src/routes/_api/oauth.js @@ -1,9 +1,9 @@ import { post, paramsString, WRITE_TIMEOUT } from '../_utils/ajax.js' import { basename } from './utils.js' -const WEBSITE = 'https://pinafore.social' +const WEBSITE = 'https://semaphore.social' const SCOPES = 'read write follow push' -const CLIENT_NAME = 'Pinafore' +const CLIENT_NAME = 'Semaphore' export function registerApplication (instanceName, redirectUri) { const url = `${basename(instanceName)}/api/v1/apps` diff --git a/src/routes/_components/NotLoggedInHome.html b/src/routes/_components/NotLoggedInHome.html index a835a314..51d40825 100644 --- a/src/routes/_components/NotLoggedInHome.html +++ b/src/routes/_components/NotLoggedInHome.html @@ -2,7 +2,7 @@ <FreeTextLayout> <div class="not-logged-in-home"> <div class="banner"> - <SvgIcon className="not-logged-in-home-svg" href="#pinafore-logo" /> + <SvgIcon className="not-logged-in-home-svg" href="#semaphore-logo" /> <h1>{intl.appName}</h1> </div> <div> diff --git a/src/routes/_components/compose/ComposeAutosuggestionList.html b/src/routes/_components/compose/ComposeAutosuggestionList.html index 2c582547..825b7052 100644 --- a/src/routes/_components/compose/ComposeAutosuggestionList.html +++ b/src/routes/_components/compose/ComposeAutosuggestionList.html @@ -98,7 +98,7 @@ fill: var(--deemphasized-text-color); } .compose-autosuggest-list-item-native-emoji { - font-family: CountryFlagEmojiPolyfill, PinaforeEmoji; + font-family: CountryFlagEmojiPolyfill, SemaphoreEmoji; font-size: 32px; line-height: 1; display: flex; diff --git a/src/routes/_components/compose/ComposeBox.html b/src/routes/_components/compose/ComposeBox.html index c4ed8562..4f416c69 100644 --- a/src/routes/_components/compose/ComposeBox.html +++ b/src/routes/_components/compose/ComposeBox.html @@ -216,7 +216,7 @@ contentWarning, realm, overLimit, - inReplyToUuid, // typical replies, using Pinafore-specific uuid + inReplyToUuid, // typical replies, using Semaphore-specific uuid inReplyToId, // delete-and-redraft replies, using standard id poll, sensitive diff --git a/src/routes/_components/compose/constants.js b/src/routes/_components/compose/constants.js new file mode 100644 index 00000000..5e49fd40 --- /dev/null +++ b/src/routes/_components/compose/constants.js @@ -0,0 +1,23 @@ +export const STATUSES_STORE = 'statuses-v4' +export const STATUS_TIMELINES_STORE = 'status_timelines-v4' +export const META_STORE = 'meta-v4' +export const ACCOUNTS_STORE = 'accounts-v4' +export const RELATIONSHIPS_STORE = 'relationships-v4' +export const NOTIFICATIONS_STORE = 'notifications-v4' +export const NOTIFICATION_TIMELINES_STORE = 'notification_timelines-v4' +export const PINNED_STATUSES_STORE = 'pinned_statuses-v4' +export const THREADS_STORE = 'threads-v4' + +export const TIMESTAMP = '__semaphore_ts' +export const ACCOUNT_ID = '__semaphore_acct_id' +export const STATUS_ID = '__semaphore_status_id' +export const REBLOG_ID = '__semaphore_reblog_id' +export const USERNAME_LOWERCASE = '__semaphore_acct_lc' + +export const DB_VERSION_INITIAL = 9 +export const DB_VERSION_SEARCH_ACCOUNTS = 10 +export const DB_VERSION_SNOWFLAKE_IDS = 12 // 11 skipped because of mistake deployed to dev.semaphore.social + +// Using an object for these so that unit tests can change them +export const DB_VERSION_CURRENT = { version: 12 } +export const CURRENT_TIME = { now: () => Date.now() } diff --git a/src/routes/_database/constants.js b/src/routes/_database/constants.js index 6d72f393..5e49fd40 100644 --- a/src/routes/_database/constants.js +++ b/src/routes/_database/constants.js @@ -8,15 +8,15 @@ export const NOTIFICATION_TIMELINES_STORE = 'notification_timelines-v4' export const PINNED_STATUSES_STORE = 'pinned_statuses-v4' export const THREADS_STORE = 'threads-v4' -export const TIMESTAMP = '__pinafore_ts' -export const ACCOUNT_ID = '__pinafore_acct_id' -export const STATUS_ID = '__pinafore_status_id' -export const REBLOG_ID = '__pinafore_reblog_id' -export const USERNAME_LOWERCASE = '__pinafore_acct_lc' +export const TIMESTAMP = '__semaphore_ts' +export const ACCOUNT_ID = '__semaphore_acct_id' +export const STATUS_ID = '__semaphore_status_id' +export const REBLOG_ID = '__semaphore_reblog_id' +export const USERNAME_LOWERCASE = '__semaphore_acct_lc' export const DB_VERSION_INITIAL = 9 export const DB_VERSION_SEARCH_ACCOUNTS = 10 -export const DB_VERSION_SNOWFLAKE_IDS = 12 // 11 skipped because of mistake deployed to dev.pinafore.social +export const DB_VERSION_SNOWFLAKE_IDS = 12 // 11 skipped because of mistake deployed to dev.semaphore.social // Using an object for these so that unit tests can change them export const DB_VERSION_CURRENT = { version: 12 } diff --git a/src/routes/_static/fonts.js b/src/routes/_static/fonts.js index cd59d72d..c46ef127 100644 --- a/src/routes/_static/fonts.js +++ b/src/routes/_static/fonts.js @@ -1,3 +1,3 @@ -// same as the one used for PinaforeEmoji +// same as the one used for SemaphoreEmoji export const FONT_FAMILY = '"Twemoji Mozilla","Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol",' + '"Noto Color Emoji","EmojiOne Color","Android Emoji",sans-serif' diff --git a/src/routes/_store/computations/navComputations.js b/src/routes/_store/computations/navComputations.js index 5f419296..5fe469f8 100644 --- a/src/routes/_store/computations/navComputations.js +++ b/src/routes/_store/computations/navComputations.js @@ -69,7 +69,7 @@ export function navComputations (store) { { name: 'home', href: '/', - svg: '#pinafore-logo', + svg: '#semaphore-logo', label: 'intl.home' }, { diff --git a/src/routes/_store/mixins/loggedInMixins.js b/src/routes/_store/mixins/loggedInMixins.js index 02467791..01e17d22 100644 --- a/src/routes/_store/mixins/loggedInMixins.js +++ b/src/routes/_store/mixins/loggedInMixins.js @@ -2,7 +2,7 @@ import { timelineMixins } from './timelineMixins.js' import { statusMixins } from './statusMixins.js' import { autosuggestMixins } from './autosuggestMixins.js' import { composeMixins } from './composeMixins.js' -import { PinaforeStore as Store } from '../store.js' +import { SemaphoreStore as Store } from '../store.js' export function loggedInMixins () { composeMixins(Store) diff --git a/src/routes/_store/store.js b/src/routes/_store/store.js index edb44689..2e3ebf73 100644 --- a/src/routes/_store/store.js +++ b/src/routes/_store/store.js @@ -73,17 +73,17 @@ const nonPersistedState = { const state = Object.assign({}, persistedState, nonPersistedState) const keysToStoreInLocalStorage = new Set(Object.keys(persistedState)) -export class PinaforeStore extends LocalStorageStore { +export class SemaphoreStore extends LocalStorageStore { constructor (state) { super(state, keysToStoreInLocalStorage) } } -PinaforeStore.prototype.observe = observe +SemaphoreStore.prototype.observe = observe -export const store = new PinaforeStore(state) +export const store = new SemaphoreStore(state) -mixins(PinaforeStore) +mixins(SemaphoreStore) computations(store) observers(store) diff --git a/src/scss/fonts.scss b/src/scss/fonts.scss index 34a4187b..9fadb577 100644 --- a/src/scss/fonts.scss +++ b/src/scss/fonts.scss @@ -1,5 +1,5 @@ @font-face { - font-family: PinaforeRegular; + font-family: SemaphoreRegular; src: local("BlinkMacSystemFont"), local("Segoe UI"), local("Roboto"), @@ -12,7 +12,7 @@ } @font-face { - font-family: PinaforeEmoji; + font-family: SemaphoreEmoji; src: local("Twemoji Mozilla"), local("Apple Color Emoji"), diff --git a/src/scss/global.scss b/src/scss/global.scss index b7ab8bdf..168734f1 100644 --- a/src/scss/global.scss +++ b/src/scss/global.scss @@ -4,7 +4,7 @@ body { margin: 0; - font-family: system-ui, -apple-system, PinaforeRegular, sans-serif; + font-family: system-ui, -apple-system, SemaphoreRegular, sans-serif; font-size: 14px; line-height: 1.4; color: var(--body-text-color); @@ -161,7 +161,7 @@ input:required, input:invalid { } textarea { - font-family: CountryFlagEmojiPolyfill, system-ui, -apple-system, PinaforeRegular, sans-serif, PinaforeEmoji; + font-family: CountryFlagEmojiPolyfill, system-ui, -apple-system, SemaphoreRegular, sans-serif, SemaphoreEmoji; font-size: inherit; box-sizing: border-box; } @@ -205,7 +205,7 @@ textarea { } .inline-emoji { - font-family: CountryFlagEmojiPolyfill, PinaforeEmoji, sans-serif; + font-family: CountryFlagEmojiPolyfill, SemaphoreEmoji, sans-serif; } .invisible { diff --git a/tests/fixtures/dump.sql b/tests/fixtures/dump.sql index 45b4007b..62916720 100644 --- a/tests/fixtures/dump.sql +++ b/tests/fixtures/dump.sql @@ -31,7 +31,7 @@ COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language'; -- --- Name: timestamp_id(text); Type: FUNCTION; Schema: public; Owner: pinafore +-- Name: timestamp_id(text); Type: FUNCTION; Schema: public; Owner: semaphore -- CREATE FUNCTION public.timestamp_id(table_name text) RETURNS bigint @@ -77,14 +77,14 @@ CREATE FUNCTION public.timestamp_id(table_name text) RETURNS bigint $$; -ALTER FUNCTION public.timestamp_id(table_name text) OWNER TO pinafore; +ALTER FUNCTION public.timestamp_id(table_name text) OWNER TO semaphoree; SET default_tablespace = ''; SET default_with_oids = false; -- --- Name: account_aliases; Type: TABLE; Schema: public; Owner: pinafore +-- Name: account_aliases; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.account_aliases ( @@ -97,10 +97,10 @@ CREATE TABLE public.account_aliases ( ); -ALTER TABLE public.account_aliases OWNER TO pinafore; +ALTER TABLE public.account_aliases OWNER TO semaphore; -- --- Name: account_aliases_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: account_aliases_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.account_aliases_id_seq @@ -111,17 +111,17 @@ CREATE SEQUENCE public.account_aliases_id_seq CACHE 1; -ALTER TABLE public.account_aliases_id_seq OWNER TO pinafore; +ALTER TABLE public.account_aliases_id_seq OWNER TO semaphore; -- --- Name: account_aliases_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: account_aliases_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.account_aliases_id_seq OWNED BY public.account_aliases.id; -- --- Name: account_conversations; Type: TABLE; Schema: public; Owner: pinafore +-- Name: account_conversations; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.account_conversations ( @@ -136,10 +136,10 @@ CREATE TABLE public.account_conversations ( ); -ALTER TABLE public.account_conversations OWNER TO pinafore; +ALTER TABLE public.account_conversations OWNER TO semaphore; -- --- Name: account_conversations_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: account_conversations_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.account_conversations_id_seq @@ -150,17 +150,17 @@ CREATE SEQUENCE public.account_conversations_id_seq CACHE 1; -ALTER TABLE public.account_conversations_id_seq OWNER TO pinafore; +ALTER TABLE public.account_conversations_id_seq OWNER TO semaphore; -- --- Name: account_conversations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: account_conversations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.account_conversations_id_seq OWNED BY public.account_conversations.id; -- --- Name: account_deletion_requests; Type: TABLE; Schema: public; Owner: pinafore +-- Name: account_deletion_requests; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.account_deletion_requests ( @@ -171,10 +171,10 @@ CREATE TABLE public.account_deletion_requests ( ); -ALTER TABLE public.account_deletion_requests OWNER TO pinafore; +ALTER TABLE public.account_deletion_requests OWNER TO semaphore; -- --- Name: account_deletion_requests_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: account_deletion_requests_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.account_deletion_requests_id_seq @@ -185,17 +185,17 @@ CREATE SEQUENCE public.account_deletion_requests_id_seq CACHE 1; -ALTER TABLE public.account_deletion_requests_id_seq OWNER TO pinafore; +ALTER TABLE public.account_deletion_requests_id_seq OWNER TO semaphore; -- --- Name: account_deletion_requests_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: account_deletion_requests_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.account_deletion_requests_id_seq OWNED BY public.account_deletion_requests.id; -- --- Name: account_domain_blocks; Type: TABLE; Schema: public; Owner: pinafore +-- Name: account_domain_blocks; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.account_domain_blocks ( @@ -207,10 +207,10 @@ CREATE TABLE public.account_domain_blocks ( ); -ALTER TABLE public.account_domain_blocks OWNER TO pinafore; +ALTER TABLE public.account_domain_blocks OWNER TO semaphore; -- --- Name: account_domain_blocks_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: account_domain_blocks_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.account_domain_blocks_id_seq @@ -221,17 +221,17 @@ CREATE SEQUENCE public.account_domain_blocks_id_seq CACHE 1; -ALTER TABLE public.account_domain_blocks_id_seq OWNER TO pinafore; +ALTER TABLE public.account_domain_blocks_id_seq OWNER TO semaphore; -- --- Name: account_domain_blocks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: account_domain_blocks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.account_domain_blocks_id_seq OWNED BY public.account_domain_blocks.id; -- --- Name: account_migrations; Type: TABLE; Schema: public; Owner: pinafore +-- Name: account_migrations; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.account_migrations ( @@ -245,10 +245,10 @@ CREATE TABLE public.account_migrations ( ); -ALTER TABLE public.account_migrations OWNER TO pinafore; +ALTER TABLE public.account_migrations OWNER TO semaphore; -- --- Name: account_migrations_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: account_migrations_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.account_migrations_id_seq @@ -259,17 +259,17 @@ CREATE SEQUENCE public.account_migrations_id_seq CACHE 1; -ALTER TABLE public.account_migrations_id_seq OWNER TO pinafore; +ALTER TABLE public.account_migrations_id_seq OWNER TO semaphore; -- --- Name: account_migrations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: account_migrations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.account_migrations_id_seq OWNED BY public.account_migrations.id; -- --- Name: account_moderation_notes; Type: TABLE; Schema: public; Owner: pinafore +-- Name: account_moderation_notes; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.account_moderation_notes ( @@ -282,10 +282,10 @@ CREATE TABLE public.account_moderation_notes ( ); -ALTER TABLE public.account_moderation_notes OWNER TO pinafore; +ALTER TABLE public.account_moderation_notes OWNER TO semaphore; -- --- Name: account_moderation_notes_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: account_moderation_notes_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.account_moderation_notes_id_seq @@ -296,17 +296,17 @@ CREATE SEQUENCE public.account_moderation_notes_id_seq CACHE 1; -ALTER TABLE public.account_moderation_notes_id_seq OWNER TO pinafore; +ALTER TABLE public.account_moderation_notes_id_seq OWNER TO semaphore; -- --- Name: account_moderation_notes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: account_moderation_notes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.account_moderation_notes_id_seq OWNED BY public.account_moderation_notes.id; -- --- Name: account_notes; Type: TABLE; Schema: public; Owner: pinafore +-- Name: account_notes; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.account_notes ( @@ -319,10 +319,10 @@ CREATE TABLE public.account_notes ( ); -ALTER TABLE public.account_notes OWNER TO pinafore; +ALTER TABLE public.account_notes OWNER TO semaphore; -- --- Name: account_notes_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: account_notes_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.account_notes_id_seq @@ -333,17 +333,17 @@ CREATE SEQUENCE public.account_notes_id_seq CACHE 1; -ALTER TABLE public.account_notes_id_seq OWNER TO pinafore; +ALTER TABLE public.account_notes_id_seq OWNER TO semaphore; -- --- Name: account_notes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: account_notes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.account_notes_id_seq OWNED BY public.account_notes.id; -- --- Name: account_pins; Type: TABLE; Schema: public; Owner: pinafore +-- Name: account_pins; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.account_pins ( @@ -355,10 +355,10 @@ CREATE TABLE public.account_pins ( ); -ALTER TABLE public.account_pins OWNER TO pinafore; +ALTER TABLE public.account_pins OWNER TO semaphore; -- --- Name: account_pins_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: account_pins_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.account_pins_id_seq @@ -369,17 +369,17 @@ CREATE SEQUENCE public.account_pins_id_seq CACHE 1; -ALTER TABLE public.account_pins_id_seq OWNER TO pinafore; +ALTER TABLE public.account_pins_id_seq OWNER TO semaphore; -- --- Name: account_pins_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: account_pins_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.account_pins_id_seq OWNED BY public.account_pins.id; -- --- Name: account_stats; Type: TABLE; Schema: public; Owner: pinafore +-- Name: account_stats; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.account_stats ( @@ -394,10 +394,10 @@ CREATE TABLE public.account_stats ( ); -ALTER TABLE public.account_stats OWNER TO pinafore; +ALTER TABLE public.account_stats OWNER TO semaphore; -- --- Name: account_stats_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: account_stats_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.account_stats_id_seq @@ -408,17 +408,17 @@ CREATE SEQUENCE public.account_stats_id_seq CACHE 1; -ALTER TABLE public.account_stats_id_seq OWNER TO pinafore; +ALTER TABLE public.account_stats_id_seq OWNER TO semaphore; -- --- Name: account_stats_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: account_stats_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.account_stats_id_seq OWNED BY public.account_stats.id; -- --- Name: account_statuses_cleanup_policies; Type: TABLE; Schema: public; Owner: pinafore +-- Name: account_statuses_cleanup_policies; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.account_statuses_cleanup_policies ( @@ -439,10 +439,10 @@ CREATE TABLE public.account_statuses_cleanup_policies ( ); -ALTER TABLE public.account_statuses_cleanup_policies OWNER TO pinafore; +ALTER TABLE public.account_statuses_cleanup_policies OWNER TO semaphore; -- --- Name: account_statuses_cleanup_policies_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: account_statuses_cleanup_policies_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.account_statuses_cleanup_policies_id_seq @@ -453,17 +453,17 @@ CREATE SEQUENCE public.account_statuses_cleanup_policies_id_seq CACHE 1; -ALTER TABLE public.account_statuses_cleanup_policies_id_seq OWNER TO pinafore; +ALTER TABLE public.account_statuses_cleanup_policies_id_seq OWNER TO semaphore; -- --- Name: account_statuses_cleanup_policies_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: account_statuses_cleanup_policies_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.account_statuses_cleanup_policies_id_seq OWNED BY public.account_statuses_cleanup_policies.id; -- --- Name: accounts; Type: TABLE; Schema: public; Owner: pinafore +-- Name: accounts; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.accounts ( @@ -516,10 +516,10 @@ CREATE TABLE public.accounts ( ); -ALTER TABLE public.accounts OWNER TO pinafore; +ALTER TABLE public.accounts OWNER TO semaphore; -- --- Name: statuses; Type: TABLE; Schema: public; Owner: pinafore +-- Name: statuses; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.statuses ( @@ -549,10 +549,10 @@ CREATE TABLE public.statuses ( ); -ALTER TABLE public.statuses OWNER TO pinafore; +ALTER TABLE public.statuses OWNER TO semaphore; -- --- Name: account_summaries; Type: MATERIALIZED VIEW; Schema: public; Owner: pinafore +-- Name: account_summaries; Type: MATERIALIZED VIEW; Schema: public; Owner: semaphore -- CREATE MATERIALIZED VIEW public.account_summaries AS @@ -572,10 +572,10 @@ CREATE MATERIALIZED VIEW public.account_summaries AS WITH NO DATA; -ALTER TABLE public.account_summaries OWNER TO pinafore; +ALTER TABLE public.account_summaries OWNER TO semaphore; -- --- Name: account_warning_presets; Type: TABLE; Schema: public; Owner: pinafore +-- Name: account_warning_presets; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.account_warning_presets ( @@ -587,10 +587,10 @@ CREATE TABLE public.account_warning_presets ( ); -ALTER TABLE public.account_warning_presets OWNER TO pinafore; +ALTER TABLE public.account_warning_presets OWNER TO semaphore; -- --- Name: account_warning_presets_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: account_warning_presets_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.account_warning_presets_id_seq @@ -601,17 +601,17 @@ CREATE SEQUENCE public.account_warning_presets_id_seq CACHE 1; -ALTER TABLE public.account_warning_presets_id_seq OWNER TO pinafore; +ALTER TABLE public.account_warning_presets_id_seq OWNER TO semaphore; -- --- Name: account_warning_presets_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: account_warning_presets_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.account_warning_presets_id_seq OWNED BY public.account_warning_presets.id; -- --- Name: account_warnings; Type: TABLE; Schema: public; Owner: pinafore +-- Name: account_warnings; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.account_warnings ( @@ -628,10 +628,10 @@ CREATE TABLE public.account_warnings ( ); -ALTER TABLE public.account_warnings OWNER TO pinafore; +ALTER TABLE public.account_warnings OWNER TO semaphore; -- --- Name: account_warnings_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: account_warnings_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.account_warnings_id_seq @@ -642,17 +642,17 @@ CREATE SEQUENCE public.account_warnings_id_seq CACHE 1; -ALTER TABLE public.account_warnings_id_seq OWNER TO pinafore; +ALTER TABLE public.account_warnings_id_seq OWNER TO semaphore; -- --- Name: account_warnings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: account_warnings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.account_warnings_id_seq OWNED BY public.account_warnings.id; -- --- Name: accounts_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: accounts_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.accounts_id_seq @@ -663,17 +663,17 @@ CREATE SEQUENCE public.accounts_id_seq CACHE 1; -ALTER TABLE public.accounts_id_seq OWNER TO pinafore; +ALTER TABLE public.accounts_id_seq OWNER TO semaphore; -- --- Name: accounts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: accounts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.accounts_id_seq OWNED BY public.accounts.id; -- --- Name: accounts_tags; Type: TABLE; Schema: public; Owner: pinafore +-- Name: accounts_tags; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.accounts_tags ( @@ -682,10 +682,10 @@ CREATE TABLE public.accounts_tags ( ); -ALTER TABLE public.accounts_tags OWNER TO pinafore; +ALTER TABLE public.accounts_tags OWNER TO semaphore; -- --- Name: admin_action_logs; Type: TABLE; Schema: public; Owner: pinafore +-- Name: admin_action_logs; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.admin_action_logs ( @@ -702,10 +702,10 @@ CREATE TABLE public.admin_action_logs ( ); -ALTER TABLE public.admin_action_logs OWNER TO pinafore; +ALTER TABLE public.admin_action_logs OWNER TO semaphore; -- --- Name: admin_action_logs_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: admin_action_logs_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.admin_action_logs_id_seq @@ -716,17 +716,17 @@ CREATE SEQUENCE public.admin_action_logs_id_seq CACHE 1; -ALTER TABLE public.admin_action_logs_id_seq OWNER TO pinafore; +ALTER TABLE public.admin_action_logs_id_seq OWNER TO semaphore; -- --- Name: admin_action_logs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: admin_action_logs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.admin_action_logs_id_seq OWNED BY public.admin_action_logs.id; -- --- Name: announcement_mutes; Type: TABLE; Schema: public; Owner: pinafore +-- Name: announcement_mutes; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.announcement_mutes ( @@ -738,10 +738,10 @@ CREATE TABLE public.announcement_mutes ( ); -ALTER TABLE public.announcement_mutes OWNER TO pinafore; +ALTER TABLE public.announcement_mutes OWNER TO semaphore; -- --- Name: announcement_mutes_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: announcement_mutes_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.announcement_mutes_id_seq @@ -752,17 +752,17 @@ CREATE SEQUENCE public.announcement_mutes_id_seq CACHE 1; -ALTER TABLE public.announcement_mutes_id_seq OWNER TO pinafore; +ALTER TABLE public.announcement_mutes_id_seq OWNER TO semaphore; -- --- Name: announcement_mutes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: announcement_mutes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.announcement_mutes_id_seq OWNED BY public.announcement_mutes.id; -- --- Name: announcement_reactions; Type: TABLE; Schema: public; Owner: pinafore +-- Name: announcement_reactions; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.announcement_reactions ( @@ -776,10 +776,10 @@ CREATE TABLE public.announcement_reactions ( ); -ALTER TABLE public.announcement_reactions OWNER TO pinafore; +ALTER TABLE public.announcement_reactions OWNER TO semaphore; -- --- Name: announcement_reactions_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: announcement_reactions_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.announcement_reactions_id_seq @@ -790,17 +790,17 @@ CREATE SEQUENCE public.announcement_reactions_id_seq CACHE 1; -ALTER TABLE public.announcement_reactions_id_seq OWNER TO pinafore; +ALTER TABLE public.announcement_reactions_id_seq OWNER TO semaphore; -- --- Name: announcement_reactions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: announcement_reactions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.announcement_reactions_id_seq OWNED BY public.announcement_reactions.id; -- --- Name: announcements; Type: TABLE; Schema: public; Owner: pinafore +-- Name: announcements; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.announcements ( @@ -818,10 +818,10 @@ CREATE TABLE public.announcements ( ); -ALTER TABLE public.announcements OWNER TO pinafore; +ALTER TABLE public.announcements OWNER TO semaphore; -- --- Name: announcements_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: announcements_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.announcements_id_seq @@ -832,17 +832,17 @@ CREATE SEQUENCE public.announcements_id_seq CACHE 1; -ALTER TABLE public.announcements_id_seq OWNER TO pinafore; +ALTER TABLE public.announcements_id_seq OWNER TO semaphore; -- --- Name: announcements_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: announcements_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.announcements_id_seq OWNED BY public.announcements.id; -- --- Name: appeals; Type: TABLE; Schema: public; Owner: pinafore +-- Name: appeals; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.appeals ( @@ -859,10 +859,10 @@ CREATE TABLE public.appeals ( ); -ALTER TABLE public.appeals OWNER TO pinafore; +ALTER TABLE public.appeals OWNER TO semaphore; -- --- Name: appeals_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: appeals_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.appeals_id_seq @@ -873,17 +873,17 @@ CREATE SEQUENCE public.appeals_id_seq CACHE 1; -ALTER TABLE public.appeals_id_seq OWNER TO pinafore; +ALTER TABLE public.appeals_id_seq OWNER TO semaphore; -- --- Name: appeals_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: appeals_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.appeals_id_seq OWNED BY public.appeals.id; -- --- Name: ar_internal_metadata; Type: TABLE; Schema: public; Owner: pinafore +-- Name: ar_internal_metadata; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.ar_internal_metadata ( @@ -894,10 +894,10 @@ CREATE TABLE public.ar_internal_metadata ( ); -ALTER TABLE public.ar_internal_metadata OWNER TO pinafore; +ALTER TABLE public.ar_internal_metadata OWNER TO semaphore; -- --- Name: backups; Type: TABLE; Schema: public; Owner: pinafore +-- Name: backups; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.backups ( @@ -913,10 +913,10 @@ CREATE TABLE public.backups ( ); -ALTER TABLE public.backups OWNER TO pinafore; +ALTER TABLE public.backups OWNER TO semaphore; -- --- Name: backups_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: backups_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.backups_id_seq @@ -927,17 +927,17 @@ CREATE SEQUENCE public.backups_id_seq CACHE 1; -ALTER TABLE public.backups_id_seq OWNER TO pinafore; +ALTER TABLE public.backups_id_seq OWNER TO semaphore; -- --- Name: backups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: backups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.backups_id_seq OWNED BY public.backups.id; -- --- Name: blocks; Type: TABLE; Schema: public; Owner: pinafore +-- Name: blocks; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.blocks ( @@ -950,10 +950,10 @@ CREATE TABLE public.blocks ( ); -ALTER TABLE public.blocks OWNER TO pinafore; +ALTER TABLE public.blocks OWNER TO semaphore; -- --- Name: blocks_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: blocks_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.blocks_id_seq @@ -964,17 +964,17 @@ CREATE SEQUENCE public.blocks_id_seq CACHE 1; -ALTER TABLE public.blocks_id_seq OWNER TO pinafore; +ALTER TABLE public.blocks_id_seq OWNER TO semaphore; -- --- Name: blocks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: blocks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.blocks_id_seq OWNED BY public.blocks.id; -- --- Name: bookmarks; Type: TABLE; Schema: public; Owner: pinafore +-- Name: bookmarks; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.bookmarks ( @@ -986,10 +986,10 @@ CREATE TABLE public.bookmarks ( ); -ALTER TABLE public.bookmarks OWNER TO pinafore; +ALTER TABLE public.bookmarks OWNER TO semaphore; -- --- Name: bookmarks_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: bookmarks_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.bookmarks_id_seq @@ -1000,17 +1000,17 @@ CREATE SEQUENCE public.bookmarks_id_seq CACHE 1; -ALTER TABLE public.bookmarks_id_seq OWNER TO pinafore; +ALTER TABLE public.bookmarks_id_seq OWNER TO semaphore; -- --- Name: bookmarks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: bookmarks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.bookmarks_id_seq OWNED BY public.bookmarks.id; -- --- Name: canonical_email_blocks; Type: TABLE; Schema: public; Owner: pinafore +-- Name: canonical_email_blocks; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.canonical_email_blocks ( @@ -1022,10 +1022,10 @@ CREATE TABLE public.canonical_email_blocks ( ); -ALTER TABLE public.canonical_email_blocks OWNER TO pinafore; +ALTER TABLE public.canonical_email_blocks OWNER TO semaphore; -- --- Name: canonical_email_blocks_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: canonical_email_blocks_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.canonical_email_blocks_id_seq @@ -1036,17 +1036,17 @@ CREATE SEQUENCE public.canonical_email_blocks_id_seq CACHE 1; -ALTER TABLE public.canonical_email_blocks_id_seq OWNER TO pinafore; +ALTER TABLE public.canonical_email_blocks_id_seq OWNER TO semaphore; -- --- Name: canonical_email_blocks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: canonical_email_blocks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.canonical_email_blocks_id_seq OWNED BY public.canonical_email_blocks.id; -- --- Name: conversation_mutes; Type: TABLE; Schema: public; Owner: pinafore +-- Name: conversation_mutes; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.conversation_mutes ( @@ -1056,10 +1056,10 @@ CREATE TABLE public.conversation_mutes ( ); -ALTER TABLE public.conversation_mutes OWNER TO pinafore; +ALTER TABLE public.conversation_mutes OWNER TO semaphore; -- --- Name: conversation_mutes_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: conversation_mutes_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.conversation_mutes_id_seq @@ -1070,17 +1070,17 @@ CREATE SEQUENCE public.conversation_mutes_id_seq CACHE 1; -ALTER TABLE public.conversation_mutes_id_seq OWNER TO pinafore; +ALTER TABLE public.conversation_mutes_id_seq OWNER TO semaphore; -- --- Name: conversation_mutes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: conversation_mutes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.conversation_mutes_id_seq OWNED BY public.conversation_mutes.id; -- --- Name: conversations; Type: TABLE; Schema: public; Owner: pinafore +-- Name: conversations; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.conversations ( @@ -1091,10 +1091,10 @@ CREATE TABLE public.conversations ( ); -ALTER TABLE public.conversations OWNER TO pinafore; +ALTER TABLE public.conversations OWNER TO semaphore; -- --- Name: conversations_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: conversations_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.conversations_id_seq @@ -1105,17 +1105,17 @@ CREATE SEQUENCE public.conversations_id_seq CACHE 1; -ALTER TABLE public.conversations_id_seq OWNER TO pinafore; +ALTER TABLE public.conversations_id_seq OWNER TO semaphore; -- --- Name: conversations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: conversations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.conversations_id_seq OWNED BY public.conversations.id; -- --- Name: custom_emoji_categories; Type: TABLE; Schema: public; Owner: pinafore +-- Name: custom_emoji_categories; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.custom_emoji_categories ( @@ -1126,10 +1126,10 @@ CREATE TABLE public.custom_emoji_categories ( ); -ALTER TABLE public.custom_emoji_categories OWNER TO pinafore; +ALTER TABLE public.custom_emoji_categories OWNER TO semaphore; -- --- Name: custom_emoji_categories_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: custom_emoji_categories_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.custom_emoji_categories_id_seq @@ -1140,17 +1140,17 @@ CREATE SEQUENCE public.custom_emoji_categories_id_seq CACHE 1; -ALTER TABLE public.custom_emoji_categories_id_seq OWNER TO pinafore; +ALTER TABLE public.custom_emoji_categories_id_seq OWNER TO semaphore; -- --- Name: custom_emoji_categories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: custom_emoji_categories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.custom_emoji_categories_id_seq OWNED BY public.custom_emoji_categories.id; -- --- Name: custom_emojis; Type: TABLE; Schema: public; Owner: pinafore +-- Name: custom_emojis; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.custom_emojis ( @@ -1172,10 +1172,10 @@ CREATE TABLE public.custom_emojis ( ); -ALTER TABLE public.custom_emojis OWNER TO pinafore; +ALTER TABLE public.custom_emojis OWNER TO semaphore; -- --- Name: custom_emojis_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: custom_emojis_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.custom_emojis_id_seq @@ -1186,17 +1186,17 @@ CREATE SEQUENCE public.custom_emojis_id_seq CACHE 1; -ALTER TABLE public.custom_emojis_id_seq OWNER TO pinafore; +ALTER TABLE public.custom_emojis_id_seq OWNER TO semaphore; -- --- Name: custom_emojis_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: custom_emojis_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.custom_emojis_id_seq OWNED BY public.custom_emojis.id; -- --- Name: custom_filter_keywords; Type: TABLE; Schema: public; Owner: pinafore +-- Name: custom_filter_keywords; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.custom_filter_keywords ( @@ -1209,10 +1209,10 @@ CREATE TABLE public.custom_filter_keywords ( ); -ALTER TABLE public.custom_filter_keywords OWNER TO pinafore; +ALTER TABLE public.custom_filter_keywords OWNER TO semaphore; -- --- Name: custom_filter_keywords_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: custom_filter_keywords_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.custom_filter_keywords_id_seq @@ -1223,17 +1223,17 @@ CREATE SEQUENCE public.custom_filter_keywords_id_seq CACHE 1; -ALTER TABLE public.custom_filter_keywords_id_seq OWNER TO pinafore; +ALTER TABLE public.custom_filter_keywords_id_seq OWNER TO semaphore; -- --- Name: custom_filter_keywords_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: custom_filter_keywords_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.custom_filter_keywords_id_seq OWNED BY public.custom_filter_keywords.id; -- --- Name: custom_filter_statuses; Type: TABLE; Schema: public; Owner: pinafore +-- Name: custom_filter_statuses; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.custom_filter_statuses ( @@ -1245,10 +1245,10 @@ CREATE TABLE public.custom_filter_statuses ( ); -ALTER TABLE public.custom_filter_statuses OWNER TO pinafore; +ALTER TABLE public.custom_filter_statuses OWNER TO semaphore; -- --- Name: custom_filter_statuses_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: custom_filter_statuses_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.custom_filter_statuses_id_seq @@ -1259,17 +1259,17 @@ CREATE SEQUENCE public.custom_filter_statuses_id_seq CACHE 1; -ALTER TABLE public.custom_filter_statuses_id_seq OWNER TO pinafore; +ALTER TABLE public.custom_filter_statuses_id_seq OWNER TO semaphore; -- --- Name: custom_filter_statuses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: custom_filter_statuses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.custom_filter_statuses_id_seq OWNED BY public.custom_filter_statuses.id; -- --- Name: custom_filters; Type: TABLE; Schema: public; Owner: pinafore +-- Name: custom_filters; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.custom_filters ( @@ -1284,10 +1284,10 @@ CREATE TABLE public.custom_filters ( ); -ALTER TABLE public.custom_filters OWNER TO pinafore; +ALTER TABLE public.custom_filters OWNER TO semaphore; -- --- Name: custom_filters_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: custom_filters_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.custom_filters_id_seq @@ -1298,17 +1298,17 @@ CREATE SEQUENCE public.custom_filters_id_seq CACHE 1; -ALTER TABLE public.custom_filters_id_seq OWNER TO pinafore; +ALTER TABLE public.custom_filters_id_seq OWNER TO semaphore; -- --- Name: custom_filters_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: custom_filters_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.custom_filters_id_seq OWNED BY public.custom_filters.id; -- --- Name: devices; Type: TABLE; Schema: public; Owner: pinafore +-- Name: devices; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.devices ( @@ -1324,10 +1324,10 @@ CREATE TABLE public.devices ( ); -ALTER TABLE public.devices OWNER TO pinafore; +ALTER TABLE public.devices OWNER TO semaphore; -- --- Name: devices_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: devices_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.devices_id_seq @@ -1338,17 +1338,17 @@ CREATE SEQUENCE public.devices_id_seq CACHE 1; -ALTER TABLE public.devices_id_seq OWNER TO pinafore; +ALTER TABLE public.devices_id_seq OWNER TO semaphore; -- --- Name: devices_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: devices_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.devices_id_seq OWNED BY public.devices.id; -- --- Name: domain_allows; Type: TABLE; Schema: public; Owner: pinafore +-- Name: domain_allows; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.domain_allows ( @@ -1359,10 +1359,10 @@ CREATE TABLE public.domain_allows ( ); -ALTER TABLE public.domain_allows OWNER TO pinafore; +ALTER TABLE public.domain_allows OWNER TO semaphore; -- --- Name: domain_allows_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: domain_allows_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.domain_allows_id_seq @@ -1373,17 +1373,17 @@ CREATE SEQUENCE public.domain_allows_id_seq CACHE 1; -ALTER TABLE public.domain_allows_id_seq OWNER TO pinafore; +ALTER TABLE public.domain_allows_id_seq OWNER TO semaphore; -- --- Name: domain_allows_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: domain_allows_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.domain_allows_id_seq OWNED BY public.domain_allows.id; -- --- Name: domain_blocks; Type: TABLE; Schema: public; Owner: pinafore +-- Name: domain_blocks; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.domain_blocks ( @@ -1400,10 +1400,10 @@ CREATE TABLE public.domain_blocks ( ); -ALTER TABLE public.domain_blocks OWNER TO pinafore; +ALTER TABLE public.domain_blocks OWNER TO semaphore; -- --- Name: domain_blocks_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: domain_blocks_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.domain_blocks_id_seq @@ -1414,17 +1414,17 @@ CREATE SEQUENCE public.domain_blocks_id_seq CACHE 1; -ALTER TABLE public.domain_blocks_id_seq OWNER TO pinafore; +ALTER TABLE public.domain_blocks_id_seq OWNER TO semaphore; -- --- Name: domain_blocks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: domain_blocks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.domain_blocks_id_seq OWNED BY public.domain_blocks.id; -- --- Name: email_domain_blocks; Type: TABLE; Schema: public; Owner: pinafore +-- Name: email_domain_blocks; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.email_domain_blocks ( @@ -1436,10 +1436,10 @@ CREATE TABLE public.email_domain_blocks ( ); -ALTER TABLE public.email_domain_blocks OWNER TO pinafore; +ALTER TABLE public.email_domain_blocks OWNER TO semaphore; -- --- Name: email_domain_blocks_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: email_domain_blocks_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.email_domain_blocks_id_seq @@ -1450,17 +1450,17 @@ CREATE SEQUENCE public.email_domain_blocks_id_seq CACHE 1; -ALTER TABLE public.email_domain_blocks_id_seq OWNER TO pinafore; +ALTER TABLE public.email_domain_blocks_id_seq OWNER TO semaphore; -- --- Name: email_domain_blocks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: email_domain_blocks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.email_domain_blocks_id_seq OWNED BY public.email_domain_blocks.id; -- --- Name: encrypted_messages; Type: TABLE; Schema: public; Owner: pinafore +-- Name: encrypted_messages; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.encrypted_messages ( @@ -1477,10 +1477,10 @@ CREATE TABLE public.encrypted_messages ( ); -ALTER TABLE public.encrypted_messages OWNER TO pinafore; +ALTER TABLE public.encrypted_messages OWNER TO semaphore; -- --- Name: encrypted_messages_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: encrypted_messages_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.encrypted_messages_id_seq @@ -1491,17 +1491,17 @@ CREATE SEQUENCE public.encrypted_messages_id_seq CACHE 1; -ALTER TABLE public.encrypted_messages_id_seq OWNER TO pinafore; +ALTER TABLE public.encrypted_messages_id_seq OWNER TO semaphore; -- --- Name: encrypted_messages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: encrypted_messages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.encrypted_messages_id_seq OWNED BY public.encrypted_messages.id; -- --- Name: favourites; Type: TABLE; Schema: public; Owner: pinafore +-- Name: favourites; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.favourites ( @@ -1513,10 +1513,10 @@ CREATE TABLE public.favourites ( ); -ALTER TABLE public.favourites OWNER TO pinafore; +ALTER TABLE public.favourites OWNER TO semaphore; -- --- Name: favourites_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: favourites_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.favourites_id_seq @@ -1527,17 +1527,17 @@ CREATE SEQUENCE public.favourites_id_seq CACHE 1; -ALTER TABLE public.favourites_id_seq OWNER TO pinafore; +ALTER TABLE public.favourites_id_seq OWNER TO semaphore; -- --- Name: favourites_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: favourites_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.favourites_id_seq OWNED BY public.favourites.id; -- --- Name: featured_tags; Type: TABLE; Schema: public; Owner: pinafore +-- Name: featured_tags; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.featured_tags ( @@ -1552,10 +1552,10 @@ CREATE TABLE public.featured_tags ( ); -ALTER TABLE public.featured_tags OWNER TO pinafore; +ALTER TABLE public.featured_tags OWNER TO semaphore; -- --- Name: featured_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: featured_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.featured_tags_id_seq @@ -1566,17 +1566,17 @@ CREATE SEQUENCE public.featured_tags_id_seq CACHE 1; -ALTER TABLE public.featured_tags_id_seq OWNER TO pinafore; +ALTER TABLE public.featured_tags_id_seq OWNER TO semaphore; -- --- Name: featured_tags_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: featured_tags_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.featured_tags_id_seq OWNED BY public.featured_tags.id; -- --- Name: follow_recommendation_suppressions; Type: TABLE; Schema: public; Owner: pinafore +-- Name: follow_recommendation_suppressions; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.follow_recommendation_suppressions ( @@ -1587,10 +1587,10 @@ CREATE TABLE public.follow_recommendation_suppressions ( ); -ALTER TABLE public.follow_recommendation_suppressions OWNER TO pinafore; +ALTER TABLE public.follow_recommendation_suppressions OWNER TO semaphore; -- --- Name: follow_recommendation_suppressions_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: follow_recommendation_suppressions_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.follow_recommendation_suppressions_id_seq @@ -1601,17 +1601,17 @@ CREATE SEQUENCE public.follow_recommendation_suppressions_id_seq CACHE 1; -ALTER TABLE public.follow_recommendation_suppressions_id_seq OWNER TO pinafore; +ALTER TABLE public.follow_recommendation_suppressions_id_seq OWNER TO semaphore; -- --- Name: follow_recommendation_suppressions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: follow_recommendation_suppressions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.follow_recommendation_suppressions_id_seq OWNED BY public.follow_recommendation_suppressions.id; -- --- Name: follows; Type: TABLE; Schema: public; Owner: pinafore +-- Name: follows; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.follows ( @@ -1627,10 +1627,10 @@ CREATE TABLE public.follows ( ); -ALTER TABLE public.follows OWNER TO pinafore; +ALTER TABLE public.follows OWNER TO semaphore; -- --- Name: status_stats; Type: TABLE; Schema: public; Owner: pinafore +-- Name: status_stats; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.status_stats ( @@ -1644,10 +1644,10 @@ CREATE TABLE public.status_stats ( ); -ALTER TABLE public.status_stats OWNER TO pinafore; +ALTER TABLE public.status_stats OWNER TO semaphore; -- --- Name: users; Type: TABLE; Schema: public; Owner: pinafore +-- Name: users; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.users ( @@ -1690,10 +1690,10 @@ CREATE TABLE public.users ( ); -ALTER TABLE public.users OWNER TO pinafore; +ALTER TABLE public.users OWNER TO semaphore; -- --- Name: follow_recommendations; Type: MATERIALIZED VIEW; Schema: public; Owner: pinafore +-- Name: follow_recommendations; Type: MATERIALIZED VIEW; Schema: public; Owner: semaphore -- CREATE MATERIALIZED VIEW public.follow_recommendations AS @@ -1726,10 +1726,10 @@ CREATE MATERIALIZED VIEW public.follow_recommendations AS WITH NO DATA; -ALTER TABLE public.follow_recommendations OWNER TO pinafore; +ALTER TABLE public.follow_recommendations OWNER TO semaphore; -- --- Name: follow_requests; Type: TABLE; Schema: public; Owner: pinafore +-- Name: follow_requests; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.follow_requests ( @@ -1745,10 +1745,10 @@ CREATE TABLE public.follow_requests ( ); -ALTER TABLE public.follow_requests OWNER TO pinafore; +ALTER TABLE public.follow_requests OWNER TO semaphore; -- --- Name: follow_requests_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: follow_requests_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.follow_requests_id_seq @@ -1759,17 +1759,17 @@ CREATE SEQUENCE public.follow_requests_id_seq CACHE 1; -ALTER TABLE public.follow_requests_id_seq OWNER TO pinafore; +ALTER TABLE public.follow_requests_id_seq OWNER TO semaphore; -- --- Name: follow_requests_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: follow_requests_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.follow_requests_id_seq OWNED BY public.follow_requests.id; -- --- Name: follows_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: follows_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.follows_id_seq @@ -1780,17 +1780,17 @@ CREATE SEQUENCE public.follows_id_seq CACHE 1; -ALTER TABLE public.follows_id_seq OWNER TO pinafore; +ALTER TABLE public.follows_id_seq OWNER TO semaphore; -- --- Name: follows_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: follows_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.follows_id_seq OWNED BY public.follows.id; -- --- Name: identities; Type: TABLE; Schema: public; Owner: pinafore +-- Name: identities; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.identities ( @@ -1803,10 +1803,10 @@ CREATE TABLE public.identities ( ); -ALTER TABLE public.identities OWNER TO pinafore; +ALTER TABLE public.identities OWNER TO semaphore; -- --- Name: identities_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: identities_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.identities_id_seq @@ -1818,17 +1818,17 @@ CREATE SEQUENCE public.identities_id_seq CACHE 1; -ALTER TABLE public.identities_id_seq OWNER TO pinafore; +ALTER TABLE public.identities_id_seq OWNER TO semaphore; -- --- Name: identities_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: identities_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.identities_id_seq OWNED BY public.identities.id; -- --- Name: imports; Type: TABLE; Schema: public; Owner: pinafore +-- Name: imports; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.imports ( @@ -1846,10 +1846,10 @@ CREATE TABLE public.imports ( ); -ALTER TABLE public.imports OWNER TO pinafore; +ALTER TABLE public.imports OWNER TO semaphore; -- --- Name: imports_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: imports_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.imports_id_seq @@ -1860,17 +1860,17 @@ CREATE SEQUENCE public.imports_id_seq CACHE 1; -ALTER TABLE public.imports_id_seq OWNER TO pinafore; +ALTER TABLE public.imports_id_seq OWNER TO semaphore; -- --- Name: imports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: imports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.imports_id_seq OWNED BY public.imports.id; -- --- Name: instances; Type: MATERIALIZED VIEW; Schema: public; Owner: pinafore +-- Name: instances; Type: MATERIALIZED VIEW; Schema: public; Owner: semaphore -- CREATE MATERIALIZED VIEW public.instances AS @@ -1897,10 +1897,10 @@ UNION WITH NO DATA; -ALTER TABLE public.instances OWNER TO pinafore; +ALTER TABLE public.instances OWNER TO semaphore; -- --- Name: invites; Type: TABLE; Schema: public; Owner: pinafore +-- Name: invites; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.invites ( @@ -1917,10 +1917,10 @@ CREATE TABLE public.invites ( ); -ALTER TABLE public.invites OWNER TO pinafore; +ALTER TABLE public.invites OWNER TO semaphore; -- --- Name: invites_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: invites_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.invites_id_seq @@ -1931,17 +1931,17 @@ CREATE SEQUENCE public.invites_id_seq CACHE 1; -ALTER TABLE public.invites_id_seq OWNER TO pinafore; +ALTER TABLE public.invites_id_seq OWNER TO semaphore; -- --- Name: invites_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: invites_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.invites_id_seq OWNED BY public.invites.id; -- --- Name: ip_blocks; Type: TABLE; Schema: public; Owner: pinafore +-- Name: ip_blocks; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.ip_blocks ( @@ -1955,10 +1955,10 @@ CREATE TABLE public.ip_blocks ( ); -ALTER TABLE public.ip_blocks OWNER TO pinafore; +ALTER TABLE public.ip_blocks OWNER TO semaphore; -- --- Name: ip_blocks_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: ip_blocks_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.ip_blocks_id_seq @@ -1969,17 +1969,17 @@ CREATE SEQUENCE public.ip_blocks_id_seq CACHE 1; -ALTER TABLE public.ip_blocks_id_seq OWNER TO pinafore; +ALTER TABLE public.ip_blocks_id_seq OWNER TO semaphore; -- --- Name: ip_blocks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: ip_blocks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.ip_blocks_id_seq OWNED BY public.ip_blocks.id; -- --- Name: list_accounts; Type: TABLE; Schema: public; Owner: pinafore +-- Name: list_accounts; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.list_accounts ( @@ -1990,10 +1990,10 @@ CREATE TABLE public.list_accounts ( ); -ALTER TABLE public.list_accounts OWNER TO pinafore; +ALTER TABLE public.list_accounts OWNER TO semaphore; -- --- Name: list_accounts_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: list_accounts_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.list_accounts_id_seq @@ -2004,17 +2004,17 @@ CREATE SEQUENCE public.list_accounts_id_seq CACHE 1; -ALTER TABLE public.list_accounts_id_seq OWNER TO pinafore; +ALTER TABLE public.list_accounts_id_seq OWNER TO semaphore; -- --- Name: list_accounts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: list_accounts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.list_accounts_id_seq OWNED BY public.list_accounts.id; -- --- Name: lists; Type: TABLE; Schema: public; Owner: pinafore +-- Name: lists; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.lists ( @@ -2027,10 +2027,10 @@ CREATE TABLE public.lists ( ); -ALTER TABLE public.lists OWNER TO pinafore; +ALTER TABLE public.lists OWNER TO semaphore; -- --- Name: lists_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: lists_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.lists_id_seq @@ -2041,17 +2041,17 @@ CREATE SEQUENCE public.lists_id_seq CACHE 1; -ALTER TABLE public.lists_id_seq OWNER TO pinafore; +ALTER TABLE public.lists_id_seq OWNER TO semaphore; -- --- Name: lists_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: lists_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.lists_id_seq OWNED BY public.lists.id; -- --- Name: login_activities; Type: TABLE; Schema: public; Owner: pinafore +-- Name: login_activities; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.login_activities ( @@ -2067,10 +2067,10 @@ CREATE TABLE public.login_activities ( ); -ALTER TABLE public.login_activities OWNER TO pinafore; +ALTER TABLE public.login_activities OWNER TO semaphore; -- --- Name: login_activities_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: login_activities_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.login_activities_id_seq @@ -2081,17 +2081,17 @@ CREATE SEQUENCE public.login_activities_id_seq CACHE 1; -ALTER TABLE public.login_activities_id_seq OWNER TO pinafore; +ALTER TABLE public.login_activities_id_seq OWNER TO semaphore; -- --- Name: login_activities_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: login_activities_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.login_activities_id_seq OWNED BY public.login_activities.id; -- --- Name: markers; Type: TABLE; Schema: public; Owner: pinafore +-- Name: markers; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.markers ( @@ -2105,10 +2105,10 @@ CREATE TABLE public.markers ( ); -ALTER TABLE public.markers OWNER TO pinafore; +ALTER TABLE public.markers OWNER TO semaphore; -- --- Name: markers_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: markers_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.markers_id_seq @@ -2119,17 +2119,17 @@ CREATE SEQUENCE public.markers_id_seq CACHE 1; -ALTER TABLE public.markers_id_seq OWNER TO pinafore; +ALTER TABLE public.markers_id_seq OWNER TO semaphore; -- --- Name: markers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: markers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.markers_id_seq OWNED BY public.markers.id; -- --- Name: media_attachments; Type: TABLE; Schema: public; Owner: pinafore +-- Name: media_attachments; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.media_attachments ( @@ -2159,10 +2159,10 @@ CREATE TABLE public.media_attachments ( ); -ALTER TABLE public.media_attachments OWNER TO pinafore; +ALTER TABLE public.media_attachments OWNER TO semaphore; -- --- Name: media_attachments_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: media_attachments_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.media_attachments_id_seq @@ -2173,17 +2173,17 @@ CREATE SEQUENCE public.media_attachments_id_seq CACHE 1; -ALTER TABLE public.media_attachments_id_seq OWNER TO pinafore; +ALTER TABLE public.media_attachments_id_seq OWNER TO semaphore; -- --- Name: media_attachments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: media_attachments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.media_attachments_id_seq OWNED BY public.media_attachments.id; -- --- Name: mentions; Type: TABLE; Schema: public; Owner: pinafore +-- Name: mentions; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.mentions ( @@ -2196,10 +2196,10 @@ CREATE TABLE public.mentions ( ); -ALTER TABLE public.mentions OWNER TO pinafore; +ALTER TABLE public.mentions OWNER TO semaphore; -- --- Name: mentions_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: mentions_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.mentions_id_seq @@ -2210,17 +2210,17 @@ CREATE SEQUENCE public.mentions_id_seq CACHE 1; -ALTER TABLE public.mentions_id_seq OWNER TO pinafore; +ALTER TABLE public.mentions_id_seq OWNER TO semaphore; -- --- Name: mentions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: mentions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.mentions_id_seq OWNED BY public.mentions.id; -- --- Name: mutes; Type: TABLE; Schema: public; Owner: pinafore +-- Name: mutes; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.mutes ( @@ -2234,10 +2234,10 @@ CREATE TABLE public.mutes ( ); -ALTER TABLE public.mutes OWNER TO pinafore; +ALTER TABLE public.mutes OWNER TO semaphore; -- --- Name: mutes_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: mutes_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.mutes_id_seq @@ -2248,17 +2248,17 @@ CREATE SEQUENCE public.mutes_id_seq CACHE 1; -ALTER TABLE public.mutes_id_seq OWNER TO pinafore; +ALTER TABLE public.mutes_id_seq OWNER TO semaphore; -- --- Name: mutes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: mutes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.mutes_id_seq OWNED BY public.mutes.id; -- --- Name: notifications; Type: TABLE; Schema: public; Owner: pinafore +-- Name: notifications; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.notifications ( @@ -2273,10 +2273,10 @@ CREATE TABLE public.notifications ( ); -ALTER TABLE public.notifications OWNER TO pinafore; +ALTER TABLE public.notifications OWNER TO semaphore; -- --- Name: notifications_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: notifications_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.notifications_id_seq @@ -2287,17 +2287,17 @@ CREATE SEQUENCE public.notifications_id_seq CACHE 1; -ALTER TABLE public.notifications_id_seq OWNER TO pinafore; +ALTER TABLE public.notifications_id_seq OWNER TO semaphore; -- --- Name: notifications_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: notifications_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.notifications_id_seq OWNED BY public.notifications.id; -- --- Name: oauth_access_grants; Type: TABLE; Schema: public; Owner: pinafore +-- Name: oauth_access_grants; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.oauth_access_grants ( @@ -2313,10 +2313,10 @@ CREATE TABLE public.oauth_access_grants ( ); -ALTER TABLE public.oauth_access_grants OWNER TO pinafore; +ALTER TABLE public.oauth_access_grants OWNER TO semaphore; -- --- Name: oauth_access_grants_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: oauth_access_grants_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.oauth_access_grants_id_seq @@ -2327,17 +2327,17 @@ CREATE SEQUENCE public.oauth_access_grants_id_seq CACHE 1; -ALTER TABLE public.oauth_access_grants_id_seq OWNER TO pinafore; +ALTER TABLE public.oauth_access_grants_id_seq OWNER TO semaphore; -- --- Name: oauth_access_grants_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: oauth_access_grants_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.oauth_access_grants_id_seq OWNED BY public.oauth_access_grants.id; -- --- Name: oauth_access_tokens; Type: TABLE; Schema: public; Owner: pinafore +-- Name: oauth_access_tokens; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.oauth_access_tokens ( @@ -2355,10 +2355,10 @@ CREATE TABLE public.oauth_access_tokens ( ); -ALTER TABLE public.oauth_access_tokens OWNER TO pinafore; +ALTER TABLE public.oauth_access_tokens OWNER TO semaphore; -- --- Name: oauth_access_tokens_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: oauth_access_tokens_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.oauth_access_tokens_id_seq @@ -2369,17 +2369,17 @@ CREATE SEQUENCE public.oauth_access_tokens_id_seq CACHE 1; -ALTER TABLE public.oauth_access_tokens_id_seq OWNER TO pinafore; +ALTER TABLE public.oauth_access_tokens_id_seq OWNER TO semaphore; -- --- Name: oauth_access_tokens_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: oauth_access_tokens_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.oauth_access_tokens_id_seq OWNED BY public.oauth_access_tokens.id; -- --- Name: oauth_applications; Type: TABLE; Schema: public; Owner: pinafore +-- Name: oauth_applications; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.oauth_applications ( @@ -2399,10 +2399,10 @@ CREATE TABLE public.oauth_applications ( ); -ALTER TABLE public.oauth_applications OWNER TO pinafore; +ALTER TABLE public.oauth_applications OWNER TO semaphore; -- --- Name: oauth_applications_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: oauth_applications_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.oauth_applications_id_seq @@ -2413,17 +2413,17 @@ CREATE SEQUENCE public.oauth_applications_id_seq CACHE 1; -ALTER TABLE public.oauth_applications_id_seq OWNER TO pinafore; +ALTER TABLE public.oauth_applications_id_seq OWNER TO semaphore; -- --- Name: oauth_applications_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: oauth_applications_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.oauth_applications_id_seq OWNED BY public.oauth_applications.id; -- --- Name: one_time_keys; Type: TABLE; Schema: public; Owner: pinafore +-- Name: one_time_keys; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.one_time_keys ( @@ -2437,10 +2437,10 @@ CREATE TABLE public.one_time_keys ( ); -ALTER TABLE public.one_time_keys OWNER TO pinafore; +ALTER TABLE public.one_time_keys OWNER TO semaphore; -- --- Name: one_time_keys_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: one_time_keys_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.one_time_keys_id_seq @@ -2451,17 +2451,17 @@ CREATE SEQUENCE public.one_time_keys_id_seq CACHE 1; -ALTER TABLE public.one_time_keys_id_seq OWNER TO pinafore; +ALTER TABLE public.one_time_keys_id_seq OWNER TO semaphore; -- --- Name: one_time_keys_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: one_time_keys_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.one_time_keys_id_seq OWNED BY public.one_time_keys.id; -- --- Name: pghero_space_stats; Type: TABLE; Schema: public; Owner: pinafore +-- Name: pghero_space_stats; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.pghero_space_stats ( @@ -2474,10 +2474,10 @@ CREATE TABLE public.pghero_space_stats ( ); -ALTER TABLE public.pghero_space_stats OWNER TO pinafore; +ALTER TABLE public.pghero_space_stats OWNER TO semaphore; -- --- Name: pghero_space_stats_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: pghero_space_stats_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.pghero_space_stats_id_seq @@ -2488,17 +2488,17 @@ CREATE SEQUENCE public.pghero_space_stats_id_seq CACHE 1; -ALTER TABLE public.pghero_space_stats_id_seq OWNER TO pinafore; +ALTER TABLE public.pghero_space_stats_id_seq OWNER TO semaphore; -- --- Name: pghero_space_stats_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: pghero_space_stats_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.pghero_space_stats_id_seq OWNED BY public.pghero_space_stats.id; -- --- Name: poll_votes; Type: TABLE; Schema: public; Owner: pinafore +-- Name: poll_votes; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.poll_votes ( @@ -2512,10 +2512,10 @@ CREATE TABLE public.poll_votes ( ); -ALTER TABLE public.poll_votes OWNER TO pinafore; +ALTER TABLE public.poll_votes OWNER TO semaphore; -- --- Name: poll_votes_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: poll_votes_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.poll_votes_id_seq @@ -2526,17 +2526,17 @@ CREATE SEQUENCE public.poll_votes_id_seq CACHE 1; -ALTER TABLE public.poll_votes_id_seq OWNER TO pinafore; +ALTER TABLE public.poll_votes_id_seq OWNER TO semaphore; -- --- Name: poll_votes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: poll_votes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.poll_votes_id_seq OWNED BY public.poll_votes.id; -- --- Name: polls; Type: TABLE; Schema: public; Owner: pinafore +-- Name: polls; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.polls ( @@ -2557,10 +2557,10 @@ CREATE TABLE public.polls ( ); -ALTER TABLE public.polls OWNER TO pinafore; +ALTER TABLE public.polls OWNER TO semaphore; -- --- Name: polls_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: polls_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.polls_id_seq @@ -2571,17 +2571,17 @@ CREATE SEQUENCE public.polls_id_seq CACHE 1; -ALTER TABLE public.polls_id_seq OWNER TO pinafore; +ALTER TABLE public.polls_id_seq OWNER TO semaphore; -- --- Name: polls_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: polls_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.polls_id_seq OWNED BY public.polls.id; -- --- Name: preview_card_providers; Type: TABLE; Schema: public; Owner: pinafore +-- Name: preview_card_providers; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.preview_card_providers ( @@ -2599,10 +2599,10 @@ CREATE TABLE public.preview_card_providers ( ); -ALTER TABLE public.preview_card_providers OWNER TO pinafore; +ALTER TABLE public.preview_card_providers OWNER TO semaphore; -- --- Name: preview_card_providers_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: preview_card_providers_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.preview_card_providers_id_seq @@ -2613,17 +2613,17 @@ CREATE SEQUENCE public.preview_card_providers_id_seq CACHE 1; -ALTER TABLE public.preview_card_providers_id_seq OWNER TO pinafore; +ALTER TABLE public.preview_card_providers_id_seq OWNER TO semaphore; -- --- Name: preview_card_providers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: preview_card_providers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.preview_card_providers_id_seq OWNED BY public.preview_card_providers.id; -- --- Name: preview_card_trends; Type: TABLE; Schema: public; Owner: pinafore +-- Name: preview_card_trends; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.preview_card_trends ( @@ -2636,10 +2636,10 @@ CREATE TABLE public.preview_card_trends ( ); -ALTER TABLE public.preview_card_trends OWNER TO pinafore; +ALTER TABLE public.preview_card_trends OWNER TO semaphore; -- --- Name: preview_card_trends_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: preview_card_trends_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.preview_card_trends_id_seq @@ -2650,17 +2650,17 @@ CREATE SEQUENCE public.preview_card_trends_id_seq CACHE 1; -ALTER TABLE public.preview_card_trends_id_seq OWNER TO pinafore; +ALTER TABLE public.preview_card_trends_id_seq OWNER TO semaphore; -- --- Name: preview_card_trends_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: preview_card_trends_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.preview_card_trends_id_seq OWNED BY public.preview_card_trends.id; -- --- Name: preview_cards; Type: TABLE; Schema: public; Owner: pinafore +-- Name: preview_cards; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.preview_cards ( @@ -2693,10 +2693,10 @@ CREATE TABLE public.preview_cards ( ); -ALTER TABLE public.preview_cards OWNER TO pinafore; +ALTER TABLE public.preview_cards OWNER TO semaphore; -- --- Name: preview_cards_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: preview_cards_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.preview_cards_id_seq @@ -2707,17 +2707,17 @@ CREATE SEQUENCE public.preview_cards_id_seq CACHE 1; -ALTER TABLE public.preview_cards_id_seq OWNER TO pinafore; +ALTER TABLE public.preview_cards_id_seq OWNER TO semaphore; -- --- Name: preview_cards_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: preview_cards_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.preview_cards_id_seq OWNED BY public.preview_cards.id; -- --- Name: preview_cards_statuses; Type: TABLE; Schema: public; Owner: pinafore +-- Name: preview_cards_statuses; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.preview_cards_statuses ( @@ -2726,10 +2726,10 @@ CREATE TABLE public.preview_cards_statuses ( ); -ALTER TABLE public.preview_cards_statuses OWNER TO pinafore; +ALTER TABLE public.preview_cards_statuses OWNER TO semaphore; -- --- Name: relays; Type: TABLE; Schema: public; Owner: pinafore +-- Name: relays; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.relays ( @@ -2742,10 +2742,10 @@ CREATE TABLE public.relays ( ); -ALTER TABLE public.relays OWNER TO pinafore; +ALTER TABLE public.relays OWNER TO semaphore; -- --- Name: relays_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: relays_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.relays_id_seq @@ -2756,17 +2756,17 @@ CREATE SEQUENCE public.relays_id_seq CACHE 1; -ALTER TABLE public.relays_id_seq OWNER TO pinafore; +ALTER TABLE public.relays_id_seq OWNER TO semaphore; -- --- Name: relays_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: relays_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.relays_id_seq OWNED BY public.relays.id; -- --- Name: report_notes; Type: TABLE; Schema: public; Owner: pinafore +-- Name: report_notes; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.report_notes ( @@ -2779,10 +2779,10 @@ CREATE TABLE public.report_notes ( ); -ALTER TABLE public.report_notes OWNER TO pinafore; +ALTER TABLE public.report_notes OWNER TO semaphore; -- --- Name: report_notes_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: report_notes_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.report_notes_id_seq @@ -2793,17 +2793,17 @@ CREATE SEQUENCE public.report_notes_id_seq CACHE 1; -ALTER TABLE public.report_notes_id_seq OWNER TO pinafore; +ALTER TABLE public.report_notes_id_seq OWNER TO semaphore; -- --- Name: report_notes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: report_notes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.report_notes_id_seq OWNED BY public.report_notes.id; -- --- Name: reports; Type: TABLE; Schema: public; Owner: pinafore +-- Name: reports; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.reports ( @@ -2824,10 +2824,10 @@ CREATE TABLE public.reports ( ); -ALTER TABLE public.reports OWNER TO pinafore; +ALTER TABLE public.reports OWNER TO semaphore; -- --- Name: reports_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: reports_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.reports_id_seq @@ -2838,17 +2838,17 @@ CREATE SEQUENCE public.reports_id_seq CACHE 1; -ALTER TABLE public.reports_id_seq OWNER TO pinafore; +ALTER TABLE public.reports_id_seq OWNER TO semaphore; -- --- Name: reports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: reports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.reports_id_seq OWNED BY public.reports.id; -- --- Name: rules; Type: TABLE; Schema: public; Owner: pinafore +-- Name: rules; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.rules ( @@ -2861,10 +2861,10 @@ CREATE TABLE public.rules ( ); -ALTER TABLE public.rules OWNER TO pinafore; +ALTER TABLE public.rules OWNER TO semaphore; -- --- Name: rules_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: rules_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.rules_id_seq @@ -2875,17 +2875,17 @@ CREATE SEQUENCE public.rules_id_seq CACHE 1; -ALTER TABLE public.rules_id_seq OWNER TO pinafore; +ALTER TABLE public.rules_id_seq OWNER TO semaphore; -- --- Name: rules_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: rules_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.rules_id_seq OWNED BY public.rules.id; -- --- Name: scheduled_statuses; Type: TABLE; Schema: public; Owner: pinafore +-- Name: scheduled_statuses; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.scheduled_statuses ( @@ -2896,10 +2896,10 @@ CREATE TABLE public.scheduled_statuses ( ); -ALTER TABLE public.scheduled_statuses OWNER TO pinafore; +ALTER TABLE public.scheduled_statuses OWNER TO semaphore; -- --- Name: scheduled_statuses_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: scheduled_statuses_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.scheduled_statuses_id_seq @@ -2910,17 +2910,17 @@ CREATE SEQUENCE public.scheduled_statuses_id_seq CACHE 1; -ALTER TABLE public.scheduled_statuses_id_seq OWNER TO pinafore; +ALTER TABLE public.scheduled_statuses_id_seq OWNER TO semaphore; -- --- Name: scheduled_statuses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: scheduled_statuses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.scheduled_statuses_id_seq OWNED BY public.scheduled_statuses.id; -- --- Name: schema_migrations; Type: TABLE; Schema: public; Owner: pinafore +-- Name: schema_migrations; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.schema_migrations ( @@ -2928,10 +2928,10 @@ CREATE TABLE public.schema_migrations ( ); -ALTER TABLE public.schema_migrations OWNER TO pinafore; +ALTER TABLE public.schema_migrations OWNER TO semaphore; -- --- Name: session_activations; Type: TABLE; Schema: public; Owner: pinafore +-- Name: session_activations; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.session_activations ( @@ -2947,10 +2947,10 @@ CREATE TABLE public.session_activations ( ); -ALTER TABLE public.session_activations OWNER TO pinafore; +ALTER TABLE public.session_activations OWNER TO semaphore; -- --- Name: session_activations_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: session_activations_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.session_activations_id_seq @@ -2961,17 +2961,17 @@ CREATE SEQUENCE public.session_activations_id_seq CACHE 1; -ALTER TABLE public.session_activations_id_seq OWNER TO pinafore; +ALTER TABLE public.session_activations_id_seq OWNER TO semaphore; -- --- Name: session_activations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: session_activations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.session_activations_id_seq OWNED BY public.session_activations.id; -- --- Name: settings; Type: TABLE; Schema: public; Owner: pinafore +-- Name: settings; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.settings ( @@ -2985,10 +2985,10 @@ CREATE TABLE public.settings ( ); -ALTER TABLE public.settings OWNER TO pinafore; +ALTER TABLE public.settings OWNER TO semaphore; -- --- Name: settings_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: settings_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.settings_id_seq @@ -2999,17 +2999,17 @@ CREATE SEQUENCE public.settings_id_seq CACHE 1; -ALTER TABLE public.settings_id_seq OWNER TO pinafore; +ALTER TABLE public.settings_id_seq OWNER TO semaphore; -- --- Name: settings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: settings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.settings_id_seq OWNED BY public.settings.id; -- --- Name: site_uploads; Type: TABLE; Schema: public; Owner: pinafore +-- Name: site_uploads; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.site_uploads ( @@ -3026,10 +3026,10 @@ CREATE TABLE public.site_uploads ( ); -ALTER TABLE public.site_uploads OWNER TO pinafore; +ALTER TABLE public.site_uploads OWNER TO semaphore; -- --- Name: site_uploads_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: site_uploads_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.site_uploads_id_seq @@ -3040,17 +3040,17 @@ CREATE SEQUENCE public.site_uploads_id_seq CACHE 1; -ALTER TABLE public.site_uploads_id_seq OWNER TO pinafore; +ALTER TABLE public.site_uploads_id_seq OWNER TO semaphore; -- --- Name: site_uploads_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: site_uploads_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.site_uploads_id_seq OWNED BY public.site_uploads.id; -- --- Name: status_edits; Type: TABLE; Schema: public; Owner: pinafore +-- Name: status_edits; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.status_edits ( @@ -3068,10 +3068,10 @@ CREATE TABLE public.status_edits ( ); -ALTER TABLE public.status_edits OWNER TO pinafore; +ALTER TABLE public.status_edits OWNER TO semaphore; -- --- Name: status_edits_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: status_edits_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.status_edits_id_seq @@ -3082,17 +3082,17 @@ CREATE SEQUENCE public.status_edits_id_seq CACHE 1; -ALTER TABLE public.status_edits_id_seq OWNER TO pinafore; +ALTER TABLE public.status_edits_id_seq OWNER TO semaphore; -- --- Name: status_edits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: status_edits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.status_edits_id_seq OWNED BY public.status_edits.id; -- --- Name: status_pins; Type: TABLE; Schema: public; Owner: pinafore +-- Name: status_pins; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.status_pins ( @@ -3104,10 +3104,10 @@ CREATE TABLE public.status_pins ( ); -ALTER TABLE public.status_pins OWNER TO pinafore; +ALTER TABLE public.status_pins OWNER TO semaphore; -- --- Name: status_pins_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: status_pins_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.status_pins_id_seq @@ -3118,17 +3118,17 @@ CREATE SEQUENCE public.status_pins_id_seq CACHE 1; -ALTER TABLE public.status_pins_id_seq OWNER TO pinafore; +ALTER TABLE public.status_pins_id_seq OWNER TO semaphore; -- --- Name: status_pins_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: status_pins_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.status_pins_id_seq OWNED BY public.status_pins.id; -- --- Name: status_stats_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: status_stats_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.status_stats_id_seq @@ -3139,17 +3139,17 @@ CREATE SEQUENCE public.status_stats_id_seq CACHE 1; -ALTER TABLE public.status_stats_id_seq OWNER TO pinafore; +ALTER TABLE public.status_stats_id_seq OWNER TO semaphore; -- --- Name: status_stats_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: status_stats_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.status_stats_id_seq OWNED BY public.status_stats.id; -- --- Name: status_trends; Type: TABLE; Schema: public; Owner: pinafore +-- Name: status_trends; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.status_trends ( @@ -3163,10 +3163,10 @@ CREATE TABLE public.status_trends ( ); -ALTER TABLE public.status_trends OWNER TO pinafore; +ALTER TABLE public.status_trends OWNER TO semaphore; -- --- Name: status_trends_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: status_trends_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.status_trends_id_seq @@ -3177,17 +3177,17 @@ CREATE SEQUENCE public.status_trends_id_seq CACHE 1; -ALTER TABLE public.status_trends_id_seq OWNER TO pinafore; +ALTER TABLE public.status_trends_id_seq OWNER TO semaphore; -- --- Name: status_trends_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: status_trends_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.status_trends_id_seq OWNED BY public.status_trends.id; -- --- Name: statuses_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: statuses_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.statuses_id_seq @@ -3198,10 +3198,10 @@ CREATE SEQUENCE public.statuses_id_seq CACHE 1; -ALTER TABLE public.statuses_id_seq OWNER TO pinafore; +ALTER TABLE public.statuses_id_seq OWNER TO semaphore; -- --- Name: statuses_tags; Type: TABLE; Schema: public; Owner: pinafore +-- Name: statuses_tags; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.statuses_tags ( @@ -3210,10 +3210,10 @@ CREATE TABLE public.statuses_tags ( ); -ALTER TABLE public.statuses_tags OWNER TO pinafore; +ALTER TABLE public.statuses_tags OWNER TO semaphore; -- --- Name: system_keys; Type: TABLE; Schema: public; Owner: pinafore +-- Name: system_keys; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.system_keys ( @@ -3224,10 +3224,10 @@ CREATE TABLE public.system_keys ( ); -ALTER TABLE public.system_keys OWNER TO pinafore; +ALTER TABLE public.system_keys OWNER TO semaphore; -- --- Name: system_keys_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: system_keys_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.system_keys_id_seq @@ -3238,17 +3238,17 @@ CREATE SEQUENCE public.system_keys_id_seq CACHE 1; -ALTER TABLE public.system_keys_id_seq OWNER TO pinafore; +ALTER TABLE public.system_keys_id_seq OWNER TO semaphore; -- --- Name: system_keys_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: system_keys_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.system_keys_id_seq OWNED BY public.system_keys.id; -- --- Name: tag_follows; Type: TABLE; Schema: public; Owner: pinafore +-- Name: tag_follows; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.tag_follows ( @@ -3260,10 +3260,10 @@ CREATE TABLE public.tag_follows ( ); -ALTER TABLE public.tag_follows OWNER TO pinafore; +ALTER TABLE public.tag_follows OWNER TO semaphore; -- --- Name: tag_follows_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: tag_follows_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.tag_follows_id_seq @@ -3274,17 +3274,17 @@ CREATE SEQUENCE public.tag_follows_id_seq CACHE 1; -ALTER TABLE public.tag_follows_id_seq OWNER TO pinafore; +ALTER TABLE public.tag_follows_id_seq OWNER TO semaphore; -- --- Name: tag_follows_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: tag_follows_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.tag_follows_id_seq OWNED BY public.tag_follows.id; -- --- Name: tags; Type: TABLE; Schema: public; Owner: pinafore +-- Name: tags; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.tags ( @@ -3304,10 +3304,10 @@ CREATE TABLE public.tags ( ); -ALTER TABLE public.tags OWNER TO pinafore; +ALTER TABLE public.tags OWNER TO semaphore; -- --- Name: tags_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: tags_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.tags_id_seq @@ -3318,17 +3318,17 @@ CREATE SEQUENCE public.tags_id_seq CACHE 1; -ALTER TABLE public.tags_id_seq OWNER TO pinafore; +ALTER TABLE public.tags_id_seq OWNER TO semaphore; -- --- Name: tags_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: tags_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.tags_id_seq OWNED BY public.tags.id; -- --- Name: tombstones; Type: TABLE; Schema: public; Owner: pinafore +-- Name: tombstones; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.tombstones ( @@ -3341,10 +3341,10 @@ CREATE TABLE public.tombstones ( ); -ALTER TABLE public.tombstones OWNER TO pinafore; +ALTER TABLE public.tombstones OWNER TO semaphore; -- --- Name: tombstones_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: tombstones_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.tombstones_id_seq @@ -3355,17 +3355,17 @@ CREATE SEQUENCE public.tombstones_id_seq CACHE 1; -ALTER TABLE public.tombstones_id_seq OWNER TO pinafore; +ALTER TABLE public.tombstones_id_seq OWNER TO semaphore; -- --- Name: tombstones_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: tombstones_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.tombstones_id_seq OWNED BY public.tombstones.id; -- --- Name: unavailable_domains; Type: TABLE; Schema: public; Owner: pinafore +-- Name: unavailable_domains; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.unavailable_domains ( @@ -3376,10 +3376,10 @@ CREATE TABLE public.unavailable_domains ( ); -ALTER TABLE public.unavailable_domains OWNER TO pinafore; +ALTER TABLE public.unavailable_domains OWNER TO semaphore; -- --- Name: unavailable_domains_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: unavailable_domains_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.unavailable_domains_id_seq @@ -3390,17 +3390,17 @@ CREATE SEQUENCE public.unavailable_domains_id_seq CACHE 1; -ALTER TABLE public.unavailable_domains_id_seq OWNER TO pinafore; +ALTER TABLE public.unavailable_domains_id_seq OWNER TO semaphore; -- --- Name: unavailable_domains_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: unavailable_domains_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.unavailable_domains_id_seq OWNED BY public.unavailable_domains.id; -- --- Name: user_invite_requests; Type: TABLE; Schema: public; Owner: pinafore +-- Name: user_invite_requests; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.user_invite_requests ( @@ -3412,10 +3412,10 @@ CREATE TABLE public.user_invite_requests ( ); -ALTER TABLE public.user_invite_requests OWNER TO pinafore; +ALTER TABLE public.user_invite_requests OWNER TO semaphore; -- --- Name: user_invite_requests_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: user_invite_requests_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.user_invite_requests_id_seq @@ -3426,17 +3426,17 @@ CREATE SEQUENCE public.user_invite_requests_id_seq CACHE 1; -ALTER TABLE public.user_invite_requests_id_seq OWNER TO pinafore; +ALTER TABLE public.user_invite_requests_id_seq OWNER TO semaphore; -- --- Name: user_invite_requests_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: user_invite_requests_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.user_invite_requests_id_seq OWNED BY public.user_invite_requests.id; -- --- Name: user_ips; Type: VIEW; Schema: public; Owner: pinafore +-- Name: user_ips; Type: VIEW; Schema: public; Owner: semaphore -- CREATE VIEW public.user_ips AS @@ -3462,10 +3462,10 @@ CREATE VIEW public.user_ips AS GROUP BY t0.user_id, t0.ip; -ALTER TABLE public.user_ips OWNER TO pinafore; +ALTER TABLE public.user_ips OWNER TO semaphore; -- --- Name: user_roles; Type: TABLE; Schema: public; Owner: pinafore +-- Name: user_roles; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.user_roles ( @@ -3480,10 +3480,10 @@ CREATE TABLE public.user_roles ( ); -ALTER TABLE public.user_roles OWNER TO pinafore; +ALTER TABLE public.user_roles OWNER TO semaphore; -- --- Name: user_roles_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: user_roles_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.user_roles_id_seq @@ -3494,17 +3494,17 @@ CREATE SEQUENCE public.user_roles_id_seq CACHE 1; -ALTER TABLE public.user_roles_id_seq OWNER TO pinafore; +ALTER TABLE public.user_roles_id_seq OWNER TO semaphore; -- --- Name: user_roles_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: user_roles_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.user_roles_id_seq OWNED BY public.user_roles.id; -- --- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.users_id_seq @@ -3515,17 +3515,17 @@ CREATE SEQUENCE public.users_id_seq CACHE 1; -ALTER TABLE public.users_id_seq OWNER TO pinafore; +ALTER TABLE public.users_id_seq OWNER TO semaphore; -- --- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.users_id_seq OWNED BY public.users.id; -- --- Name: web_push_subscriptions; Type: TABLE; Schema: public; Owner: pinafore +-- Name: web_push_subscriptions; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.web_push_subscriptions ( @@ -3541,10 +3541,10 @@ CREATE TABLE public.web_push_subscriptions ( ); -ALTER TABLE public.web_push_subscriptions OWNER TO pinafore; +ALTER TABLE public.web_push_subscriptions OWNER TO semaphore; -- --- Name: web_push_subscriptions_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: web_push_subscriptions_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.web_push_subscriptions_id_seq @@ -3555,17 +3555,17 @@ CREATE SEQUENCE public.web_push_subscriptions_id_seq CACHE 1; -ALTER TABLE public.web_push_subscriptions_id_seq OWNER TO pinafore; +ALTER TABLE public.web_push_subscriptions_id_seq OWNER TO semaphore; -- --- Name: web_push_subscriptions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: web_push_subscriptions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.web_push_subscriptions_id_seq OWNED BY public.web_push_subscriptions.id; -- --- Name: web_settings; Type: TABLE; Schema: public; Owner: pinafore +-- Name: web_settings; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.web_settings ( @@ -3577,10 +3577,10 @@ CREATE TABLE public.web_settings ( ); -ALTER TABLE public.web_settings OWNER TO pinafore; +ALTER TABLE public.web_settings OWNER TO semaphore; -- --- Name: web_settings_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: web_settings_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.web_settings_id_seq @@ -3591,17 +3591,17 @@ CREATE SEQUENCE public.web_settings_id_seq CACHE 1; -ALTER TABLE public.web_settings_id_seq OWNER TO pinafore; +ALTER TABLE public.web_settings_id_seq OWNER TO semaphore; -- --- Name: web_settings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: web_settings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.web_settings_id_seq OWNED BY public.web_settings.id; -- --- Name: webauthn_credentials; Type: TABLE; Schema: public; Owner: pinafore +-- Name: webauthn_credentials; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.webauthn_credentials ( @@ -3616,10 +3616,10 @@ CREATE TABLE public.webauthn_credentials ( ); -ALTER TABLE public.webauthn_credentials OWNER TO pinafore; +ALTER TABLE public.webauthn_credentials OWNER TO semaphore; -- --- Name: webauthn_credentials_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: webauthn_credentials_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.webauthn_credentials_id_seq @@ -3630,17 +3630,17 @@ CREATE SEQUENCE public.webauthn_credentials_id_seq CACHE 1; -ALTER TABLE public.webauthn_credentials_id_seq OWNER TO pinafore; +ALTER TABLE public.webauthn_credentials_id_seq OWNER TO semaphore; -- --- Name: webauthn_credentials_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: webauthn_credentials_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.webauthn_credentials_id_seq OWNED BY public.webauthn_credentials.id; -- --- Name: webhooks; Type: TABLE; Schema: public; Owner: pinafore +-- Name: webhooks; Type: TABLE; Schema: public; Owner: semaphore -- CREATE TABLE public.webhooks ( @@ -3654,10 +3654,10 @@ CREATE TABLE public.webhooks ( ); -ALTER TABLE public.webhooks OWNER TO pinafore; +ALTER TABLE public.webhooks OWNER TO semaphore; -- --- Name: webhooks_id_seq; Type: SEQUENCE; Schema: public; Owner: pinafore +-- Name: webhooks_id_seq; Type: SEQUENCE; Schema: public; Owner: semaphore -- CREATE SEQUENCE public.webhooks_id_seq @@ -3668,591 +3668,591 @@ CREATE SEQUENCE public.webhooks_id_seq CACHE 1; -ALTER TABLE public.webhooks_id_seq OWNER TO pinafore; +ALTER TABLE public.webhooks_id_seq OWNER TO semaphore; -- --- Name: webhooks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: pinafore +-- Name: webhooks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: semaphore -- ALTER SEQUENCE public.webhooks_id_seq OWNED BY public.webhooks.id; -- --- Name: account_aliases id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: account_aliases id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.account_aliases ALTER COLUMN id SET DEFAULT nextval('public.account_aliases_id_seq'::regclass); -- --- Name: account_conversations id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: account_conversations id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.account_conversations ALTER COLUMN id SET DEFAULT nextval('public.account_conversations_id_seq'::regclass); -- --- Name: account_deletion_requests id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: account_deletion_requests id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.account_deletion_requests ALTER COLUMN id SET DEFAULT nextval('public.account_deletion_requests_id_seq'::regclass); -- --- Name: account_domain_blocks id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: account_domain_blocks id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.account_domain_blocks ALTER COLUMN id SET DEFAULT nextval('public.account_domain_blocks_id_seq'::regclass); -- --- Name: account_migrations id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: account_migrations id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.account_migrations ALTER COLUMN id SET DEFAULT nextval('public.account_migrations_id_seq'::regclass); -- --- Name: account_moderation_notes id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: account_moderation_notes id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.account_moderation_notes ALTER COLUMN id SET DEFAULT nextval('public.account_moderation_notes_id_seq'::regclass); -- --- Name: account_notes id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: account_notes id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.account_notes ALTER COLUMN id SET DEFAULT nextval('public.account_notes_id_seq'::regclass); -- --- Name: account_pins id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: account_pins id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.account_pins ALTER COLUMN id SET DEFAULT nextval('public.account_pins_id_seq'::regclass); -- --- Name: account_stats id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: account_stats id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.account_stats ALTER COLUMN id SET DEFAULT nextval('public.account_stats_id_seq'::regclass); -- --- Name: account_statuses_cleanup_policies id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: account_statuses_cleanup_policies id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.account_statuses_cleanup_policies ALTER COLUMN id SET DEFAULT nextval('public.account_statuses_cleanup_policies_id_seq'::regclass); -- --- Name: account_warning_presets id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: account_warning_presets id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.account_warning_presets ALTER COLUMN id SET DEFAULT nextval('public.account_warning_presets_id_seq'::regclass); -- --- Name: account_warnings id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: account_warnings id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.account_warnings ALTER COLUMN id SET DEFAULT nextval('public.account_warnings_id_seq'::regclass); -- --- Name: admin_action_logs id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: admin_action_logs id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.admin_action_logs ALTER COLUMN id SET DEFAULT nextval('public.admin_action_logs_id_seq'::regclass); -- --- Name: announcement_mutes id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: announcement_mutes id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.announcement_mutes ALTER COLUMN id SET DEFAULT nextval('public.announcement_mutes_id_seq'::regclass); -- --- Name: announcement_reactions id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: announcement_reactions id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.announcement_reactions ALTER COLUMN id SET DEFAULT nextval('public.announcement_reactions_id_seq'::regclass); -- --- Name: announcements id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: announcements id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.announcements ALTER COLUMN id SET DEFAULT nextval('public.announcements_id_seq'::regclass); -- --- Name: appeals id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: appeals id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.appeals ALTER COLUMN id SET DEFAULT nextval('public.appeals_id_seq'::regclass); -- --- Name: backups id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: backups id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.backups ALTER COLUMN id SET DEFAULT nextval('public.backups_id_seq'::regclass); -- --- Name: blocks id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: blocks id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.blocks ALTER COLUMN id SET DEFAULT nextval('public.blocks_id_seq'::regclass); -- --- Name: bookmarks id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: bookmarks id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.bookmarks ALTER COLUMN id SET DEFAULT nextval('public.bookmarks_id_seq'::regclass); -- --- Name: canonical_email_blocks id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: canonical_email_blocks id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.canonical_email_blocks ALTER COLUMN id SET DEFAULT nextval('public.canonical_email_blocks_id_seq'::regclass); -- --- Name: conversation_mutes id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: conversation_mutes id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.conversation_mutes ALTER COLUMN id SET DEFAULT nextval('public.conversation_mutes_id_seq'::regclass); -- --- Name: conversations id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: conversations id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.conversations ALTER COLUMN id SET DEFAULT nextval('public.conversations_id_seq'::regclass); -- --- Name: custom_emoji_categories id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: custom_emoji_categories id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.custom_emoji_categories ALTER COLUMN id SET DEFAULT nextval('public.custom_emoji_categories_id_seq'::regclass); -- --- Name: custom_emojis id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: custom_emojis id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.custom_emojis ALTER COLUMN id SET DEFAULT nextval('public.custom_emojis_id_seq'::regclass); -- --- Name: custom_filter_keywords id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: custom_filter_keywords id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.custom_filter_keywords ALTER COLUMN id SET DEFAULT nextval('public.custom_filter_keywords_id_seq'::regclass); -- --- Name: custom_filter_statuses id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: custom_filter_statuses id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.custom_filter_statuses ALTER COLUMN id SET DEFAULT nextval('public.custom_filter_statuses_id_seq'::regclass); -- --- Name: custom_filters id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: custom_filters id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.custom_filters ALTER COLUMN id SET DEFAULT nextval('public.custom_filters_id_seq'::regclass); -- --- Name: devices id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: devices id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.devices ALTER COLUMN id SET DEFAULT nextval('public.devices_id_seq'::regclass); -- --- Name: domain_allows id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: domain_allows id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.domain_allows ALTER COLUMN id SET DEFAULT nextval('public.domain_allows_id_seq'::regclass); -- --- Name: domain_blocks id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: domain_blocks id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.domain_blocks ALTER COLUMN id SET DEFAULT nextval('public.domain_blocks_id_seq'::regclass); -- --- Name: email_domain_blocks id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: email_domain_blocks id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.email_domain_blocks ALTER COLUMN id SET DEFAULT nextval('public.email_domain_blocks_id_seq'::regclass); -- --- Name: favourites id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: favourites id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.favourites ALTER COLUMN id SET DEFAULT nextval('public.favourites_id_seq'::regclass); -- --- Name: featured_tags id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: featured_tags id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.featured_tags ALTER COLUMN id SET DEFAULT nextval('public.featured_tags_id_seq'::regclass); -- --- Name: follow_recommendation_suppressions id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: follow_recommendation_suppressions id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.follow_recommendation_suppressions ALTER COLUMN id SET DEFAULT nextval('public.follow_recommendation_suppressions_id_seq'::regclass); -- --- Name: follow_requests id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: follow_requests id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.follow_requests ALTER COLUMN id SET DEFAULT nextval('public.follow_requests_id_seq'::regclass); -- --- Name: follows id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: follows id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.follows ALTER COLUMN id SET DEFAULT nextval('public.follows_id_seq'::regclass); -- --- Name: identities id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: identities id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.identities ALTER COLUMN id SET DEFAULT nextval('public.identities_id_seq'::regclass); -- --- Name: imports id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: imports id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.imports ALTER COLUMN id SET DEFAULT nextval('public.imports_id_seq'::regclass); -- --- Name: invites id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: invites id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.invites ALTER COLUMN id SET DEFAULT nextval('public.invites_id_seq'::regclass); -- --- Name: ip_blocks id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: ip_blocks id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.ip_blocks ALTER COLUMN id SET DEFAULT nextval('public.ip_blocks_id_seq'::regclass); -- --- Name: list_accounts id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: list_accounts id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.list_accounts ALTER COLUMN id SET DEFAULT nextval('public.list_accounts_id_seq'::regclass); -- --- Name: lists id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: lists id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.lists ALTER COLUMN id SET DEFAULT nextval('public.lists_id_seq'::regclass); -- --- Name: login_activities id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: login_activities id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.login_activities ALTER COLUMN id SET DEFAULT nextval('public.login_activities_id_seq'::regclass); -- --- Name: markers id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: markers id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.markers ALTER COLUMN id SET DEFAULT nextval('public.markers_id_seq'::regclass); -- --- Name: mentions id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: mentions id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.mentions ALTER COLUMN id SET DEFAULT nextval('public.mentions_id_seq'::regclass); -- --- Name: mutes id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: mutes id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.mutes ALTER COLUMN id SET DEFAULT nextval('public.mutes_id_seq'::regclass); -- --- Name: notifications id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: notifications id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.notifications ALTER COLUMN id SET DEFAULT nextval('public.notifications_id_seq'::regclass); -- --- Name: oauth_access_grants id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: oauth_access_grants id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.oauth_access_grants ALTER COLUMN id SET DEFAULT nextval('public.oauth_access_grants_id_seq'::regclass); -- --- Name: oauth_access_tokens id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: oauth_access_tokens id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.oauth_access_tokens ALTER COLUMN id SET DEFAULT nextval('public.oauth_access_tokens_id_seq'::regclass); -- --- Name: oauth_applications id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: oauth_applications id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.oauth_applications ALTER COLUMN id SET DEFAULT nextval('public.oauth_applications_id_seq'::regclass); -- --- Name: one_time_keys id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: one_time_keys id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.one_time_keys ALTER COLUMN id SET DEFAULT nextval('public.one_time_keys_id_seq'::regclass); -- --- Name: pghero_space_stats id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: pghero_space_stats id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.pghero_space_stats ALTER COLUMN id SET DEFAULT nextval('public.pghero_space_stats_id_seq'::regclass); -- --- Name: poll_votes id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: poll_votes id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.poll_votes ALTER COLUMN id SET DEFAULT nextval('public.poll_votes_id_seq'::regclass); -- --- Name: polls id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: polls id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.polls ALTER COLUMN id SET DEFAULT nextval('public.polls_id_seq'::regclass); -- --- Name: preview_card_providers id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: preview_card_providers id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.preview_card_providers ALTER COLUMN id SET DEFAULT nextval('public.preview_card_providers_id_seq'::regclass); -- --- Name: preview_card_trends id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: preview_card_trends id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.preview_card_trends ALTER COLUMN id SET DEFAULT nextval('public.preview_card_trends_id_seq'::regclass); -- --- Name: preview_cards id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: preview_cards id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.preview_cards ALTER COLUMN id SET DEFAULT nextval('public.preview_cards_id_seq'::regclass); -- --- Name: relays id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: relays id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.relays ALTER COLUMN id SET DEFAULT nextval('public.relays_id_seq'::regclass); -- --- Name: report_notes id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: report_notes id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.report_notes ALTER COLUMN id SET DEFAULT nextval('public.report_notes_id_seq'::regclass); -- --- Name: reports id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: reports id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.reports ALTER COLUMN id SET DEFAULT nextval('public.reports_id_seq'::regclass); -- --- Name: rules id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: rules id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.rules ALTER COLUMN id SET DEFAULT nextval('public.rules_id_seq'::regclass); -- --- Name: scheduled_statuses id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: scheduled_statuses id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.scheduled_statuses ALTER COLUMN id SET DEFAULT nextval('public.scheduled_statuses_id_seq'::regclass); -- --- Name: session_activations id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: session_activations id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.session_activations ALTER COLUMN id SET DEFAULT nextval('public.session_activations_id_seq'::regclass); -- --- Name: settings id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: settings id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.settings ALTER COLUMN id SET DEFAULT nextval('public.settings_id_seq'::regclass); -- --- Name: site_uploads id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: site_uploads id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.site_uploads ALTER COLUMN id SET DEFAULT nextval('public.site_uploads_id_seq'::regclass); -- --- Name: status_edits id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: status_edits id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.status_edits ALTER COLUMN id SET DEFAULT nextval('public.status_edits_id_seq'::regclass); -- --- Name: status_pins id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: status_pins id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.status_pins ALTER COLUMN id SET DEFAULT nextval('public.status_pins_id_seq'::regclass); -- --- Name: status_stats id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: status_stats id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.status_stats ALTER COLUMN id SET DEFAULT nextval('public.status_stats_id_seq'::regclass); -- --- Name: status_trends id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: status_trends id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.status_trends ALTER COLUMN id SET DEFAULT nextval('public.status_trends_id_seq'::regclass); -- --- Name: system_keys id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: system_keys id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.system_keys ALTER COLUMN id SET DEFAULT nextval('public.system_keys_id_seq'::regclass); -- --- Name: tag_follows id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: tag_follows id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.tag_follows ALTER COLUMN id SET DEFAULT nextval('public.tag_follows_id_seq'::regclass); -- --- Name: tags id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: tags id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.tags ALTER COLUMN id SET DEFAULT nextval('public.tags_id_seq'::regclass); -- --- Name: tombstones id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: tombstones id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.tombstones ALTER COLUMN id SET DEFAULT nextval('public.tombstones_id_seq'::regclass); -- --- Name: unavailable_domains id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: unavailable_domains id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.unavailable_domains ALTER COLUMN id SET DEFAULT nextval('public.unavailable_domains_id_seq'::regclass); -- --- Name: user_invite_requests id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: user_invite_requests id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.user_invite_requests ALTER COLUMN id SET DEFAULT nextval('public.user_invite_requests_id_seq'::regclass); -- --- Name: user_roles id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: user_roles id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.user_roles ALTER COLUMN id SET DEFAULT nextval('public.user_roles_id_seq'::regclass); -- --- Name: users id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: users id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.users ALTER COLUMN id SET DEFAULT nextval('public.users_id_seq'::regclass); -- --- Name: web_push_subscriptions id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: web_push_subscriptions id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.web_push_subscriptions ALTER COLUMN id SET DEFAULT nextval('public.web_push_subscriptions_id_seq'::regclass); -- --- Name: web_settings id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: web_settings id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.web_settings ALTER COLUMN id SET DEFAULT nextval('public.web_settings_id_seq'::regclass); -- --- Name: webauthn_credentials id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: webauthn_credentials id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.webauthn_credentials ALTER COLUMN id SET DEFAULT nextval('public.webauthn_credentials_id_seq'::regclass); -- --- Name: webhooks id; Type: DEFAULT; Schema: public; Owner: pinafore +-- Name: webhooks id; Type: DEFAULT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.webhooks ALTER COLUMN id SET DEFAULT nextval('public.webhooks_id_seq'::regclass); -- --- Data for Name: account_aliases; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: account_aliases; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.account_aliases (id, account_id, acct, uri, created_at, updated_at) FROM stdin; @@ -4260,7 +4260,7 @@ COPY public.account_aliases (id, account_id, acct, uri, created_at, updated_at) -- --- Data for Name: account_conversations; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: account_conversations; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.account_conversations (id, account_id, conversation_id, participant_account_ids, status_ids, last_status_id, lock_version, unread) FROM stdin; @@ -4268,7 +4268,7 @@ COPY public.account_conversations (id, account_id, conversation_id, participant_ -- --- Data for Name: account_deletion_requests; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: account_deletion_requests; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.account_deletion_requests (id, account_id, created_at, updated_at) FROM stdin; @@ -4276,7 +4276,7 @@ COPY public.account_deletion_requests (id, account_id, created_at, updated_at) F -- --- Data for Name: account_domain_blocks; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: account_domain_blocks; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.account_domain_blocks (id, domain, created_at, updated_at, account_id) FROM stdin; @@ -4284,7 +4284,7 @@ COPY public.account_domain_blocks (id, domain, created_at, updated_at, account_i -- --- Data for Name: account_migrations; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: account_migrations; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.account_migrations (id, account_id, acct, followers_count, target_account_id, created_at, updated_at) FROM stdin; @@ -4292,7 +4292,7 @@ COPY public.account_migrations (id, account_id, acct, followers_count, target_ac -- --- Data for Name: account_moderation_notes; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: account_moderation_notes; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.account_moderation_notes (id, content, account_id, target_account_id, created_at, updated_at) FROM stdin; @@ -4300,7 +4300,7 @@ COPY public.account_moderation_notes (id, content, account_id, target_account_id -- --- Data for Name: account_notes; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: account_notes; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.account_notes (id, account_id, target_account_id, comment, created_at, updated_at) FROM stdin; @@ -4308,7 +4308,7 @@ COPY public.account_notes (id, account_id, target_account_id, comment, created_a -- --- Data for Name: account_pins; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: account_pins; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.account_pins (id, account_id, target_account_id, created_at, updated_at) FROM stdin; @@ -4316,7 +4316,7 @@ COPY public.account_pins (id, account_id, target_account_id, created_at, updated -- --- Data for Name: account_stats; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: account_stats; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.account_stats (id, account_id, statuses_count, following_count, followers_count, created_at, updated_at, last_status_at) FROM stdin; @@ -4330,7 +4330,7 @@ COPY public.account_stats (id, account_id, statuses_count, following_count, foll -- --- Data for Name: account_statuses_cleanup_policies; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: account_statuses_cleanup_policies; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.account_statuses_cleanup_policies (id, account_id, enabled, min_status_age, keep_direct, keep_pinned, keep_polls, keep_media, keep_self_fav, keep_self_bookmark, min_favs, min_reblogs, created_at, updated_at) FROM stdin; @@ -4338,7 +4338,7 @@ COPY public.account_statuses_cleanup_policies (id, account_id, enabled, min_stat -- --- Data for Name: account_warning_presets; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: account_warning_presets; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.account_warning_presets (id, text, created_at, updated_at, title) FROM stdin; @@ -4346,7 +4346,7 @@ COPY public.account_warning_presets (id, text, created_at, updated_at, title) FR -- --- Data for Name: account_warnings; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: account_warnings; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.account_warnings (id, account_id, target_account_id, action, text, created_at, updated_at, report_id, status_ids, overruled_at) FROM stdin; @@ -4354,7 +4354,7 @@ COPY public.account_warnings (id, account_id, target_account_id, action, text, c -- --- Data for Name: accounts; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: accounts; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.accounts (id, username, domain, private_key, public_key, created_at, updated_at, note, display_name, uri, url, avatar_file_name, avatar_content_type, avatar_file_size, avatar_updated_at, header_file_name, header_content_type, header_file_size, header_updated_at, avatar_remote_url, locked, header_remote_url, last_webfingered_at, inbox_url, outbox_url, shared_inbox_url, followers_url, protocol, memorial, moved_to_account_id, featured_collection_url, fields, actor_type, discoverable, also_known_as, silenced_at, suspended_at, hide_collections, avatar_storage_schema_version, header_storage_schema_version, devices_url, sensitized_at, suspension_origin, trendable, reviewed_at, requested_review_at) FROM stdin; @@ -4369,7 +4369,7 @@ COPY public.accounts (id, username, domain, private_key, public_key, created_at, -- --- Data for Name: accounts_tags; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: accounts_tags; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.accounts_tags (account_id, tag_id) FROM stdin; @@ -4377,7 +4377,7 @@ COPY public.accounts_tags (account_id, tag_id) FROM stdin; -- --- Data for Name: admin_action_logs; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: admin_action_logs; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.admin_action_logs (id, account_id, action, target_type, target_id, created_at, updated_at, human_identifier, route_param, permalink) FROM stdin; @@ -4388,7 +4388,7 @@ COPY public.admin_action_logs (id, account_id, action, target_type, target_id, c -- --- Data for Name: announcement_mutes; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: announcement_mutes; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.announcement_mutes (id, account_id, announcement_id, created_at, updated_at) FROM stdin; @@ -4396,7 +4396,7 @@ COPY public.announcement_mutes (id, account_id, announcement_id, created_at, upd -- --- Data for Name: announcement_reactions; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: announcement_reactions; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.announcement_reactions (id, account_id, announcement_id, name, custom_emoji_id, created_at, updated_at) FROM stdin; @@ -4404,7 +4404,7 @@ COPY public.announcement_reactions (id, account_id, announcement_id, name, custo -- --- Data for Name: announcements; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: announcements; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.announcements (id, text, published, all_day, scheduled_at, starts_at, ends_at, created_at, updated_at, published_at, status_ids) FROM stdin; @@ -4412,7 +4412,7 @@ COPY public.announcements (id, text, published, all_day, scheduled_at, starts_at -- --- Data for Name: appeals; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: appeals; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.appeals (id, account_id, account_warning_id, text, approved_at, approved_by_account_id, rejected_at, rejected_by_account_id, created_at, updated_at) FROM stdin; @@ -4420,7 +4420,7 @@ COPY public.appeals (id, account_id, account_warning_id, text, approved_at, appr -- --- Data for Name: ar_internal_metadata; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: ar_internal_metadata; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.ar_internal_metadata (key, value, created_at, updated_at) FROM stdin; @@ -4429,7 +4429,7 @@ environment development 2018-03-06 03:50:47.67559 2018-03-06 03:50:47.67559 -- --- Data for Name: backups; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: backups; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.backups (id, user_id, dump_file_name, dump_content_type, dump_updated_at, processed, created_at, updated_at, dump_file_size) FROM stdin; @@ -4437,7 +4437,7 @@ COPY public.backups (id, user_id, dump_file_name, dump_content_type, dump_update -- --- Data for Name: blocks; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: blocks; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.blocks (id, created_at, updated_at, account_id, target_account_id, uri) FROM stdin; @@ -4445,7 +4445,7 @@ COPY public.blocks (id, created_at, updated_at, account_id, target_account_id, u -- --- Data for Name: bookmarks; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: bookmarks; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.bookmarks (id, account_id, status_id, created_at, updated_at) FROM stdin; @@ -4453,7 +4453,7 @@ COPY public.bookmarks (id, account_id, status_id, created_at, updated_at) FROM s -- --- Data for Name: canonical_email_blocks; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: canonical_email_blocks; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.canonical_email_blocks (id, canonical_email_hash, reference_account_id, created_at, updated_at) FROM stdin; @@ -4461,7 +4461,7 @@ COPY public.canonical_email_blocks (id, canonical_email_hash, reference_account_ -- --- Data for Name: conversation_mutes; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: conversation_mutes; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.conversation_mutes (id, conversation_id, account_id) FROM stdin; @@ -4469,7 +4469,7 @@ COPY public.conversation_mutes (id, conversation_id, account_id) FROM stdin; -- --- Data for Name: conversations; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: conversations; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.conversations (id, uri, created_at, updated_at) FROM stdin; @@ -4477,7 +4477,7 @@ COPY public.conversations (id, uri, created_at, updated_at) FROM stdin; -- --- Data for Name: custom_emoji_categories; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: custom_emoji_categories; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.custom_emoji_categories (id, name, created_at, updated_at) FROM stdin; @@ -4485,7 +4485,7 @@ COPY public.custom_emoji_categories (id, name, created_at, updated_at) FROM stdi -- --- Data for Name: custom_emojis; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: custom_emojis; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.custom_emojis (id, shortcode, domain, image_file_name, image_content_type, image_file_size, image_updated_at, created_at, updated_at, disabled, uri, image_remote_url, visible_in_picker, category_id, image_storage_schema_version) FROM stdin; @@ -4496,7 +4496,7 @@ COPY public.custom_emojis (id, shortcode, domain, image_file_name, image_content -- --- Data for Name: custom_filter_keywords; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: custom_filter_keywords; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.custom_filter_keywords (id, custom_filter_id, keyword, whole_word, created_at, updated_at) FROM stdin; @@ -4504,7 +4504,7 @@ COPY public.custom_filter_keywords (id, custom_filter_id, keyword, whole_word, c -- --- Data for Name: custom_filter_statuses; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: custom_filter_statuses; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.custom_filter_statuses (id, custom_filter_id, status_id, created_at, updated_at) FROM stdin; @@ -4512,7 +4512,7 @@ COPY public.custom_filter_statuses (id, custom_filter_id, status_id, created_at, -- --- Data for Name: custom_filters; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: custom_filters; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.custom_filters (id, account_id, expires_at, phrase, context, created_at, updated_at, action) FROM stdin; @@ -4520,7 +4520,7 @@ COPY public.custom_filters (id, account_id, expires_at, phrase, context, created -- --- Data for Name: devices; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: devices; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.devices (id, access_token_id, account_id, device_id, name, fingerprint_key, identity_key, created_at, updated_at) FROM stdin; @@ -4528,7 +4528,7 @@ COPY public.devices (id, access_token_id, account_id, device_id, name, fingerpri -- --- Data for Name: domain_allows; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: domain_allows; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.domain_allows (id, domain, created_at, updated_at) FROM stdin; @@ -4536,7 +4536,7 @@ COPY public.domain_allows (id, domain, created_at, updated_at) FROM stdin; -- --- Data for Name: domain_blocks; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: domain_blocks; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.domain_blocks (id, domain, created_at, updated_at, severity, reject_media, reject_reports, private_comment, public_comment, obfuscate) FROM stdin; @@ -4544,7 +4544,7 @@ COPY public.domain_blocks (id, domain, created_at, updated_at, severity, reject_ -- --- Data for Name: email_domain_blocks; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: email_domain_blocks; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.email_domain_blocks (id, domain, created_at, updated_at, parent_id) FROM stdin; @@ -4552,7 +4552,7 @@ COPY public.email_domain_blocks (id, domain, created_at, updated_at, parent_id) -- --- Data for Name: encrypted_messages; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: encrypted_messages; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.encrypted_messages (id, device_id, from_account_id, from_device_id, type, body, digest, message_franking, created_at, updated_at) FROM stdin; @@ -4560,7 +4560,7 @@ COPY public.encrypted_messages (id, device_id, from_account_id, from_device_id, -- --- Data for Name: favourites; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: favourites; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.favourites (id, created_at, updated_at, account_id, status_id) FROM stdin; @@ -4568,7 +4568,7 @@ COPY public.favourites (id, created_at, updated_at, account_id, status_id) FROM -- --- Data for Name: featured_tags; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: featured_tags; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.featured_tags (id, account_id, tag_id, statuses_count, last_status_at, created_at, updated_at, name) FROM stdin; @@ -4576,7 +4576,7 @@ COPY public.featured_tags (id, account_id, tag_id, statuses_count, last_status_a -- --- Data for Name: follow_recommendation_suppressions; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: follow_recommendation_suppressions; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.follow_recommendation_suppressions (id, account_id, created_at, updated_at) FROM stdin; @@ -4584,7 +4584,7 @@ COPY public.follow_recommendation_suppressions (id, account_id, created_at, upda -- --- Data for Name: follow_requests; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: follow_requests; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.follow_requests (id, created_at, updated_at, account_id, target_account_id, show_reblogs, uri, notify, languages) FROM stdin; @@ -4592,7 +4592,7 @@ COPY public.follow_requests (id, created_at, updated_at, account_id, target_acco -- --- Data for Name: follows; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: follows; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.follows (id, created_at, updated_at, account_id, target_account_id, show_reblogs, uri, notify, languages) FROM stdin; @@ -4605,7 +4605,7 @@ COPY public.follows (id, created_at, updated_at, account_id, target_account_id, -- --- Data for Name: identities; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: identities; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.identities (provider, uid, created_at, updated_at, id, user_id) FROM stdin; @@ -4613,7 +4613,7 @@ COPY public.identities (provider, uid, created_at, updated_at, id, user_id) FROM -- --- Data for Name: imports; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: imports; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.imports (id, type, approved, created_at, updated_at, data_file_name, data_content_type, data_file_size, data_updated_at, account_id, overwrite) FROM stdin; @@ -4621,7 +4621,7 @@ COPY public.imports (id, type, approved, created_at, updated_at, data_file_name, -- --- Data for Name: invites; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: invites; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.invites (id, user_id, code, expires_at, max_uses, uses, created_at, updated_at, autofollow, comment) FROM stdin; @@ -4629,7 +4629,7 @@ COPY public.invites (id, user_id, code, expires_at, max_uses, uses, created_at, -- --- Data for Name: ip_blocks; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: ip_blocks; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.ip_blocks (id, ip, severity, expires_at, comment, created_at, updated_at) FROM stdin; @@ -4637,7 +4637,7 @@ COPY public.ip_blocks (id, ip, severity, expires_at, comment, created_at, update -- --- Data for Name: list_accounts; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: list_accounts; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.list_accounts (id, list_id, account_id, follow_id) FROM stdin; @@ -4645,7 +4645,7 @@ COPY public.list_accounts (id, list_id, account_id, follow_id) FROM stdin; -- --- Data for Name: lists; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: lists; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.lists (id, account_id, title, created_at, updated_at, replies_policy) FROM stdin; @@ -4653,7 +4653,7 @@ COPY public.lists (id, account_id, title, created_at, updated_at, replies_policy -- --- Data for Name: login_activities; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: login_activities; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.login_activities (id, user_id, authentication_method, provider, success, failure_reason, ip, user_agent, created_at) FROM stdin; @@ -4661,7 +4661,7 @@ COPY public.login_activities (id, user_id, authentication_method, provider, succ -- --- Data for Name: markers; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: markers; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.markers (id, user_id, timeline, last_read_id, lock_version, created_at, updated_at) FROM stdin; @@ -4669,7 +4669,7 @@ COPY public.markers (id, user_id, timeline, last_read_id, lock_version, created_ -- --- Data for Name: media_attachments; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: media_attachments; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.media_attachments (id, status_id, file_file_name, file_content_type, file_file_size, file_updated_at, remote_url, created_at, updated_at, shortcode, type, file_meta, account_id, description, scheduled_status_id, blurhash, processing, file_storage_schema_version, thumbnail_file_name, thumbnail_content_type, thumbnail_file_size, thumbnail_updated_at, thumbnail_remote_url) FROM stdin; @@ -4677,7 +4677,7 @@ COPY public.media_attachments (id, status_id, file_file_name, file_content_type, -- --- Data for Name: mentions; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: mentions; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.mentions (id, status_id, created_at, updated_at, account_id, silent) FROM stdin; @@ -4685,7 +4685,7 @@ COPY public.mentions (id, status_id, created_at, updated_at, account_id, silent) -- --- Data for Name: mutes; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: mutes; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.mutes (id, created_at, updated_at, account_id, target_account_id, hide_notifications, expires_at) FROM stdin; @@ -4693,7 +4693,7 @@ COPY public.mutes (id, created_at, updated_at, account_id, target_account_id, hi -- --- Data for Name: notifications; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: notifications; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.notifications (id, activity_id, activity_type, created_at, updated_at, account_id, from_account_id, type) FROM stdin; @@ -4706,7 +4706,7 @@ COPY public.notifications (id, activity_id, activity_type, created_at, updated_a -- --- Data for Name: oauth_access_grants; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: oauth_access_grants; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.oauth_access_grants (id, token, expires_in, redirect_uri, created_at, revoked_at, scopes, application_id, resource_owner_id) FROM stdin; @@ -4714,7 +4714,7 @@ COPY public.oauth_access_grants (id, token, expires_in, redirect_uri, created_at -- --- Data for Name: oauth_access_tokens; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: oauth_access_tokens; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.oauth_access_tokens (id, token, refresh_token, expires_in, revoked_at, created_at, scopes, application_id, resource_owner_id, last_used_at, last_used_ip) FROM stdin; @@ -4731,7 +4731,7 @@ COPY public.oauth_access_tokens (id, token, refresh_token, expires_in, revoked_a -- --- Data for Name: oauth_applications; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: oauth_applications; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.oauth_applications (id, name, uid, secret, redirect_uri, scopes, created_at, updated_at, superapp, website, owner_type, owner_id, confidential) FROM stdin; @@ -4740,7 +4740,7 @@ COPY public.oauth_applications (id, name, uid, secret, redirect_uri, scopes, cre -- --- Data for Name: one_time_keys; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: one_time_keys; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.one_time_keys (id, device_id, key_id, key, signature, created_at, updated_at) FROM stdin; @@ -4748,7 +4748,7 @@ COPY public.one_time_keys (id, device_id, key_id, key, signature, created_at, up -- --- Data for Name: pghero_space_stats; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: pghero_space_stats; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.pghero_space_stats (id, database, schema, relation, size, captured_at) FROM stdin; @@ -4756,7 +4756,7 @@ COPY public.pghero_space_stats (id, database, schema, relation, size, captured_a -- --- Data for Name: poll_votes; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: poll_votes; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.poll_votes (id, account_id, poll_id, choice, created_at, updated_at, uri) FROM stdin; @@ -4764,7 +4764,7 @@ COPY public.poll_votes (id, account_id, poll_id, choice, created_at, updated_at, -- --- Data for Name: polls; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: polls; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.polls (id, account_id, status_id, expires_at, options, cached_tallies, multiple, hide_totals, votes_count, last_fetched_at, created_at, updated_at, lock_version, voters_count) FROM stdin; @@ -4772,7 +4772,7 @@ COPY public.polls (id, account_id, status_id, expires_at, options, cached_tallie -- --- Data for Name: preview_card_providers; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: preview_card_providers; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.preview_card_providers (id, domain, icon_file_name, icon_content_type, icon_file_size, icon_updated_at, trendable, reviewed_at, requested_review_at, created_at, updated_at) FROM stdin; @@ -4780,7 +4780,7 @@ COPY public.preview_card_providers (id, domain, icon_file_name, icon_content_typ -- --- Data for Name: preview_card_trends; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: preview_card_trends; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.preview_card_trends (id, preview_card_id, score, rank, allowed, language) FROM stdin; @@ -4788,7 +4788,7 @@ COPY public.preview_card_trends (id, preview_card_id, score, rank, allowed, lang -- --- Data for Name: preview_cards; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: preview_cards; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.preview_cards (id, url, title, description, image_file_name, image_content_type, image_file_size, image_updated_at, type, html, author_name, author_url, provider_name, provider_url, width, height, created_at, updated_at, embed_url, image_storage_schema_version, blurhash, language, max_score, max_score_at, trendable, link_type) FROM stdin; @@ -4796,7 +4796,7 @@ COPY public.preview_cards (id, url, title, description, image_file_name, image_c -- --- Data for Name: preview_cards_statuses; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: preview_cards_statuses; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.preview_cards_statuses (preview_card_id, status_id) FROM stdin; @@ -4804,7 +4804,7 @@ COPY public.preview_cards_statuses (preview_card_id, status_id) FROM stdin; -- --- Data for Name: relays; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: relays; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.relays (id, inbox_url, follow_activity_id, created_at, updated_at, state) FROM stdin; @@ -4812,7 +4812,7 @@ COPY public.relays (id, inbox_url, follow_activity_id, created_at, updated_at, s -- --- Data for Name: report_notes; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: report_notes; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.report_notes (id, content, report_id, account_id, created_at, updated_at) FROM stdin; @@ -4820,7 +4820,7 @@ COPY public.report_notes (id, content, report_id, account_id, created_at, update -- --- Data for Name: reports; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: reports; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.reports (id, status_ids, comment, created_at, updated_at, account_id, action_taken_by_account_id, target_account_id, assigned_account_id, uri, forwarded, category, action_taken_at, rule_ids) FROM stdin; @@ -4828,7 +4828,7 @@ COPY public.reports (id, status_ids, comment, created_at, updated_at, account_id -- --- Data for Name: rules; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: rules; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.rules (id, priority, deleted_at, text, created_at, updated_at) FROM stdin; @@ -4836,7 +4836,7 @@ COPY public.rules (id, priority, deleted_at, text, created_at, updated_at) FROM -- --- Data for Name: scheduled_statuses; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: scheduled_statuses; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.scheduled_statuses (id, account_id, scheduled_at, params) FROM stdin; @@ -4844,7 +4844,7 @@ COPY public.scheduled_statuses (id, account_id, scheduled_at, params) FROM stdin -- --- Data for Name: schema_migrations; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: schema_migrations; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.schema_migrations (version) FROM stdin; @@ -5247,7 +5247,7 @@ COPY public.schema_migrations (version) FROM stdin; -- --- Data for Name: session_activations; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: session_activations; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.session_activations (id, session_id, created_at, updated_at, user_agent, ip, access_token_id, user_id, web_push_subscription_id) FROM stdin; @@ -5264,7 +5264,7 @@ COPY public.session_activations (id, session_id, created_at, updated_at, user_ag -- --- Data for Name: settings; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: settings; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.settings (id, var, value, thing_type, created_at, updated_at, thing_id) FROM stdin; @@ -5305,7 +5305,7 @@ COPY public.settings (id, var, value, thing_type, created_at, updated_at, thing_ -- --- Data for Name: site_uploads; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: site_uploads; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.site_uploads (id, var, file_file_name, file_content_type, file_file_size, file_updated_at, meta, created_at, updated_at, blurhash) FROM stdin; @@ -5313,7 +5313,7 @@ COPY public.site_uploads (id, var, file_file_name, file_content_type, file_file_ -- --- Data for Name: status_edits; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: status_edits; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.status_edits (id, status_id, account_id, text, spoiler_text, created_at, updated_at, ordered_media_attachment_ids, media_descriptions, poll_options, sensitive) FROM stdin; @@ -5321,7 +5321,7 @@ COPY public.status_edits (id, status_id, account_id, text, spoiler_text, created -- --- Data for Name: status_pins; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: status_pins; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.status_pins (id, account_id, status_id, created_at, updated_at) FROM stdin; @@ -5329,7 +5329,7 @@ COPY public.status_pins (id, account_id, status_id, created_at, updated_at) FROM -- --- Data for Name: status_stats; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: status_stats; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.status_stats (id, status_id, replies_count, reblogs_count, favourites_count, created_at, updated_at) FROM stdin; @@ -5337,7 +5337,7 @@ COPY public.status_stats (id, status_id, replies_count, reblogs_count, favourite -- --- Data for Name: status_trends; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: status_trends; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.status_trends (id, status_id, account_id, score, rank, allowed, language) FROM stdin; @@ -5345,7 +5345,7 @@ COPY public.status_trends (id, status_id, account_id, score, rank, allowed, lang -- --- Data for Name: statuses; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: statuses; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.statuses (id, uri, text, created_at, updated_at, in_reply_to_id, reblog_of_id, url, sensitive, visibility, spoiler_text, reply, language, conversation_id, local, account_id, application_id, in_reply_to_account_id, poll_id, deleted_at, edited_at, trendable, ordered_media_attachment_ids) FROM stdin; @@ -5353,7 +5353,7 @@ COPY public.statuses (id, uri, text, created_at, updated_at, in_reply_to_id, reb -- --- Data for Name: statuses_tags; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: statuses_tags; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.statuses_tags (status_id, tag_id) FROM stdin; @@ -5361,7 +5361,7 @@ COPY public.statuses_tags (status_id, tag_id) FROM stdin; -- --- Data for Name: system_keys; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: system_keys; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.system_keys (id, key, created_at, updated_at) FROM stdin; @@ -5369,7 +5369,7 @@ COPY public.system_keys (id, key, created_at, updated_at) FROM stdin; -- --- Data for Name: tag_follows; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: tag_follows; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.tag_follows (id, tag_id, account_id, created_at, updated_at) FROM stdin; @@ -5377,7 +5377,7 @@ COPY public.tag_follows (id, tag_id, account_id, created_at, updated_at) FROM st -- --- Data for Name: tags; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: tags; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.tags (id, name, created_at, updated_at, usable, trendable, listable, reviewed_at, requested_review_at, last_status_at, max_score, max_score_at, display_name) FROM stdin; @@ -5385,7 +5385,7 @@ COPY public.tags (id, name, created_at, updated_at, usable, trendable, listable, -- --- Data for Name: tombstones; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: tombstones; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.tombstones (id, account_id, uri, created_at, updated_at, by_moderator) FROM stdin; @@ -5393,7 +5393,7 @@ COPY public.tombstones (id, account_id, uri, created_at, updated_at, by_moderato -- --- Data for Name: unavailable_domains; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: unavailable_domains; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.unavailable_domains (id, domain, created_at, updated_at) FROM stdin; @@ -5401,7 +5401,7 @@ COPY public.unavailable_domains (id, domain, created_at, updated_at) FROM stdin; -- --- Data for Name: user_invite_requests; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: user_invite_requests; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.user_invite_requests (id, user_id, text, created_at, updated_at) FROM stdin; @@ -5409,7 +5409,7 @@ COPY public.user_invite_requests (id, user_id, text, created_at, updated_at) FRO -- --- Data for Name: user_roles; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: user_roles; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.user_roles (id, name, color, "position", permissions, highlighted, created_at, updated_at) FROM stdin; @@ -5421,7 +5421,7 @@ COPY public.user_roles (id, name, color, "position", permissions, highlighted, c -- --- Data for Name: users; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: users; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.users (id, email, created_at, updated_at, encrypted_password, reset_password_token, reset_password_sent_at, sign_in_count, current_sign_in_at, last_sign_in_at, admin, confirmation_token, confirmed_at, confirmation_sent_at, unconfirmed_email, locale, encrypted_otp_secret, encrypted_otp_secret_iv, encrypted_otp_secret_salt, consumed_timestep, otp_required_for_login, last_emailed_at, otp_backup_codes, account_id, disabled, moderator, invite_id, chosen_languages, created_by_application_id, approved, sign_in_token, sign_in_token_sent_at, webauthn_id, sign_up_ip, skip_sign_in_token, role_id) FROM stdin; @@ -5435,7 +5435,7 @@ COPY public.users (id, email, created_at, updated_at, encrypted_password, reset_ -- --- Data for Name: web_push_subscriptions; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: web_push_subscriptions; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.web_push_subscriptions (id, endpoint, key_p256dh, key_auth, data, created_at, updated_at, access_token_id, user_id) FROM stdin; @@ -5443,7 +5443,7 @@ COPY public.web_push_subscriptions (id, endpoint, key_p256dh, key_auth, data, cr -- --- Data for Name: web_settings; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: web_settings; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.web_settings (id, data, created_at, updated_at, user_id) FROM stdin; @@ -5455,7 +5455,7 @@ COPY public.web_settings (id, data, created_at, updated_at, user_id) FROM stdin; -- --- Data for Name: webauthn_credentials; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: webauthn_credentials; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.webauthn_credentials (id, external_id, public_key, nickname, sign_count, user_id, created_at, updated_at) FROM stdin; @@ -5463,7 +5463,7 @@ COPY public.webauthn_credentials (id, external_id, public_key, nickname, sign_co -- --- Data for Name: webhooks; Type: TABLE DATA; Schema: public; Owner: pinafore +-- Data for Name: webhooks; Type: TABLE DATA; Schema: public; Owner: semaphore -- COPY public.webhooks (id, url, events, secret, enabled, created_at, updated_at) FROM stdin; @@ -5471,609 +5471,609 @@ COPY public.webhooks (id, url, events, secret, enabled, created_at, updated_at) -- --- Name: account_aliases_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: account_aliases_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.account_aliases_id_seq', 1, false); -- --- Name: account_conversations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: account_conversations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.account_conversations_id_seq', 1, false); -- --- Name: account_deletion_requests_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: account_deletion_requests_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.account_deletion_requests_id_seq', 1, false); -- --- Name: account_domain_blocks_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: account_domain_blocks_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.account_domain_blocks_id_seq', 1, false); -- --- Name: account_migrations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: account_migrations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.account_migrations_id_seq', 1, false); -- --- Name: account_moderation_notes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: account_moderation_notes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.account_moderation_notes_id_seq', 1, false); -- --- Name: account_notes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: account_notes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.account_notes_id_seq', 1, false); -- --- Name: account_pins_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: account_pins_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.account_pins_id_seq', 1, false); -- --- Name: account_stats_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: account_stats_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.account_stats_id_seq', 6, true); -- --- Name: account_statuses_cleanup_policies_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: account_statuses_cleanup_policies_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.account_statuses_cleanup_policies_id_seq', 1, false); -- --- Name: account_warning_presets_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: account_warning_presets_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.account_warning_presets_id_seq', 1, false); -- --- Name: account_warnings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: account_warnings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.account_warnings_id_seq', 1, false); -- --- Name: accounts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: accounts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.accounts_id_seq', 6, true); -- --- Name: admin_action_logs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: admin_action_logs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.admin_action_logs_id_seq', 3, true); -- --- Name: announcement_mutes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: announcement_mutes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.announcement_mutes_id_seq', 1, false); -- --- Name: announcement_reactions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: announcement_reactions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.announcement_reactions_id_seq', 1, false); -- --- Name: announcements_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: announcements_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.announcements_id_seq', 1, false); -- --- Name: appeals_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: appeals_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.appeals_id_seq', 1, false); -- --- Name: backups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: backups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.backups_id_seq', 1, false); -- --- Name: blocks_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: blocks_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.blocks_id_seq', 1, false); -- --- Name: bookmarks_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: bookmarks_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.bookmarks_id_seq', 1, false); -- --- Name: canonical_email_blocks_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: canonical_email_blocks_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.canonical_email_blocks_id_seq', 1, false); -- --- Name: conversation_mutes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: conversation_mutes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.conversation_mutes_id_seq', 1, false); -- --- Name: conversations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: conversations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.conversations_id_seq', 1, false); -- --- Name: custom_emoji_categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: custom_emoji_categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.custom_emoji_categories_id_seq', 1, false); -- --- Name: custom_emojis_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: custom_emojis_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.custom_emojis_id_seq', 3, true); -- --- Name: custom_filter_keywords_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: custom_filter_keywords_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.custom_filter_keywords_id_seq', 1, false); -- --- Name: custom_filter_statuses_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: custom_filter_statuses_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.custom_filter_statuses_id_seq', 1, false); -- --- Name: custom_filters_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: custom_filters_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.custom_filters_id_seq', 1, false); -- --- Name: devices_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: devices_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.devices_id_seq', 1, false); -- --- Name: domain_allows_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: domain_allows_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.domain_allows_id_seq', 1, false); -- --- Name: domain_blocks_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: domain_blocks_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.domain_blocks_id_seq', 1, false); -- --- Name: email_domain_blocks_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: email_domain_blocks_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.email_domain_blocks_id_seq', 1, false); -- --- Name: encrypted_messages_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: encrypted_messages_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.encrypted_messages_id_seq', 1, false); -- --- Name: favourites_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: favourites_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.favourites_id_seq', 1, false); -- --- Name: featured_tags_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: featured_tags_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.featured_tags_id_seq', 1, false); -- --- Name: follow_recommendation_suppressions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: follow_recommendation_suppressions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.follow_recommendation_suppressions_id_seq', 1, false); -- --- Name: follow_requests_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: follow_requests_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.follow_requests_id_seq', 1, false); -- --- Name: follows_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: follows_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.follows_id_seq', 5, true); -- --- Name: identities_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: identities_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.identities_id_seq', 1, false); -- --- Name: imports_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: imports_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.imports_id_seq', 1, false); -- --- Name: invites_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: invites_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.invites_id_seq', 1, false); -- --- Name: ip_blocks_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: ip_blocks_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.ip_blocks_id_seq', 1, false); -- --- Name: list_accounts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: list_accounts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.list_accounts_id_seq', 1, false); -- --- Name: lists_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: lists_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.lists_id_seq', 1, false); -- --- Name: login_activities_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: login_activities_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.login_activities_id_seq', 1, false); -- --- Name: markers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: markers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.markers_id_seq', 1, false); -- --- Name: media_attachments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: media_attachments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.media_attachments_id_seq', 1, false); -- --- Name: mentions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: mentions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.mentions_id_seq', 1, false); -- --- Name: mutes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: mutes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.mutes_id_seq', 1, false); -- --- Name: notifications_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: notifications_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.notifications_id_seq', 5, true); -- --- Name: oauth_access_grants_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: oauth_access_grants_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.oauth_access_grants_id_seq', 1, false); -- --- Name: oauth_access_tokens_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: oauth_access_tokens_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.oauth_access_tokens_id_seq', 10, true); -- --- Name: oauth_applications_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: oauth_applications_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.oauth_applications_id_seq', 1, true); -- --- Name: one_time_keys_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: one_time_keys_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.one_time_keys_id_seq', 1, false); -- --- Name: pghero_space_stats_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: pghero_space_stats_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.pghero_space_stats_id_seq', 1, false); -- --- Name: poll_votes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: poll_votes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.poll_votes_id_seq', 1, false); -- --- Name: polls_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: polls_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.polls_id_seq', 1, false); -- --- Name: preview_card_providers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: preview_card_providers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.preview_card_providers_id_seq', 1, false); -- --- Name: preview_card_trends_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: preview_card_trends_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.preview_card_trends_id_seq', 1, false); -- --- Name: preview_cards_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: preview_cards_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.preview_cards_id_seq', 1, false); -- --- Name: relays_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: relays_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.relays_id_seq', 1, false); -- --- Name: report_notes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: report_notes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.report_notes_id_seq', 1, false); -- --- Name: reports_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: reports_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.reports_id_seq', 1, false); -- --- Name: rules_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: rules_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.rules_id_seq', 1, false); -- --- Name: scheduled_statuses_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: scheduled_statuses_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.scheduled_statuses_id_seq', 1, false); -- --- Name: session_activations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: session_activations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.session_activations_id_seq', 10, true); -- --- Name: settings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: settings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.settings_id_seq', 33, true); -- --- Name: site_uploads_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: site_uploads_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.site_uploads_id_seq', 1, false); -- --- Name: status_edits_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: status_edits_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.status_edits_id_seq', 1, false); -- --- Name: status_pins_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: status_pins_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.status_pins_id_seq', 1, false); -- --- Name: status_stats_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: status_stats_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.status_stats_id_seq', 1, false); -- --- Name: status_trends_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: status_trends_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.status_trends_id_seq', 1, false); -- --- Name: statuses_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: statuses_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.statuses_id_seq', 1, false); -- --- Name: system_keys_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: system_keys_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.system_keys_id_seq', 1, false); -- --- Name: tag_follows_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: tag_follows_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.tag_follows_id_seq', 1, false); -- --- Name: tags_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: tags_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.tags_id_seq', 1, false); -- --- Name: tombstones_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: tombstones_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.tombstones_id_seq', 1, false); -- --- Name: unavailable_domains_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: unavailable_domains_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.unavailable_domains_id_seq', 1, false); -- --- Name: user_invite_requests_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: user_invite_requests_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.user_invite_requests_id_seq', 1, false); -- --- Name: user_roles_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: user_roles_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.user_roles_id_seq', 3, true); -- --- Name: users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.users_id_seq', 6, true); -- --- Name: web_push_subscriptions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: web_push_subscriptions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.web_push_subscriptions_id_seq', 1, false); -- --- Name: web_settings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: web_settings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.web_settings_id_seq', 4, true); -- --- Name: webauthn_credentials_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: webauthn_credentials_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.webauthn_credentials_id_seq', 1, false); -- --- Name: webhooks_id_seq; Type: SEQUENCE SET; Schema: public; Owner: pinafore +-- Name: webhooks_id_seq; Type: SEQUENCE SET; Schema: public; Owner: semaphore -- SELECT pg_catalog.setval('public.webhooks_id_seq', 1, false); -- --- Name: account_aliases account_aliases_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: account_aliases account_aliases_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.account_aliases @@ -6081,7 +6081,7 @@ ALTER TABLE ONLY public.account_aliases -- --- Name: account_conversations account_conversations_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: account_conversations account_conversations_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.account_conversations @@ -6089,7 +6089,7 @@ ALTER TABLE ONLY public.account_conversations -- --- Name: account_deletion_requests account_deletion_requests_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: account_deletion_requests account_deletion_requests_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.account_deletion_requests @@ -6097,7 +6097,7 @@ ALTER TABLE ONLY public.account_deletion_requests -- --- Name: account_domain_blocks account_domain_blocks_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: account_domain_blocks account_domain_blocks_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.account_domain_blocks @@ -6105,7 +6105,7 @@ ALTER TABLE ONLY public.account_domain_blocks -- --- Name: account_migrations account_migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: account_migrations account_migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.account_migrations @@ -6113,7 +6113,7 @@ ALTER TABLE ONLY public.account_migrations -- --- Name: account_moderation_notes account_moderation_notes_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: account_moderation_notes account_moderation_notes_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.account_moderation_notes @@ -6121,7 +6121,7 @@ ALTER TABLE ONLY public.account_moderation_notes -- --- Name: account_notes account_notes_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: account_notes account_notes_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.account_notes @@ -6129,7 +6129,7 @@ ALTER TABLE ONLY public.account_notes -- --- Name: account_pins account_pins_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: account_pins account_pins_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.account_pins @@ -6137,7 +6137,7 @@ ALTER TABLE ONLY public.account_pins -- --- Name: account_stats account_stats_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: account_stats account_stats_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.account_stats @@ -6145,7 +6145,7 @@ ALTER TABLE ONLY public.account_stats -- --- Name: account_statuses_cleanup_policies account_statuses_cleanup_policies_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: account_statuses_cleanup_policies account_statuses_cleanup_policies_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.account_statuses_cleanup_policies @@ -6153,7 +6153,7 @@ ALTER TABLE ONLY public.account_statuses_cleanup_policies -- --- Name: account_warning_presets account_warning_presets_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: account_warning_presets account_warning_presets_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.account_warning_presets @@ -6161,7 +6161,7 @@ ALTER TABLE ONLY public.account_warning_presets -- --- Name: account_warnings account_warnings_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: account_warnings account_warnings_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.account_warnings @@ -6169,7 +6169,7 @@ ALTER TABLE ONLY public.account_warnings -- --- Name: accounts accounts_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: accounts accounts_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.accounts @@ -6177,7 +6177,7 @@ ALTER TABLE ONLY public.accounts -- --- Name: admin_action_logs admin_action_logs_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: admin_action_logs admin_action_logs_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.admin_action_logs @@ -6185,7 +6185,7 @@ ALTER TABLE ONLY public.admin_action_logs -- --- Name: announcement_mutes announcement_mutes_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: announcement_mutes announcement_mutes_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.announcement_mutes @@ -6193,7 +6193,7 @@ ALTER TABLE ONLY public.announcement_mutes -- --- Name: announcement_reactions announcement_reactions_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: announcement_reactions announcement_reactions_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.announcement_reactions @@ -6201,7 +6201,7 @@ ALTER TABLE ONLY public.announcement_reactions -- --- Name: announcements announcements_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: announcements announcements_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.announcements @@ -6209,7 +6209,7 @@ ALTER TABLE ONLY public.announcements -- --- Name: appeals appeals_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: appeals appeals_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.appeals @@ -6217,7 +6217,7 @@ ALTER TABLE ONLY public.appeals -- --- Name: ar_internal_metadata ar_internal_metadata_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: ar_internal_metadata ar_internal_metadata_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.ar_internal_metadata @@ -6225,7 +6225,7 @@ ALTER TABLE ONLY public.ar_internal_metadata -- --- Name: backups backups_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: backups backups_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.backups @@ -6233,7 +6233,7 @@ ALTER TABLE ONLY public.backups -- --- Name: blocks blocks_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: blocks blocks_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.blocks @@ -6241,7 +6241,7 @@ ALTER TABLE ONLY public.blocks -- --- Name: bookmarks bookmarks_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: bookmarks bookmarks_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.bookmarks @@ -6249,7 +6249,7 @@ ALTER TABLE ONLY public.bookmarks -- --- Name: canonical_email_blocks canonical_email_blocks_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: canonical_email_blocks canonical_email_blocks_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.canonical_email_blocks @@ -6257,7 +6257,7 @@ ALTER TABLE ONLY public.canonical_email_blocks -- --- Name: conversation_mutes conversation_mutes_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: conversation_mutes conversation_mutes_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.conversation_mutes @@ -6265,7 +6265,7 @@ ALTER TABLE ONLY public.conversation_mutes -- --- Name: conversations conversations_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: conversations conversations_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.conversations @@ -6273,7 +6273,7 @@ ALTER TABLE ONLY public.conversations -- --- Name: custom_emoji_categories custom_emoji_categories_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: custom_emoji_categories custom_emoji_categories_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.custom_emoji_categories @@ -6281,7 +6281,7 @@ ALTER TABLE ONLY public.custom_emoji_categories -- --- Name: custom_emojis custom_emojis_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: custom_emojis custom_emojis_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.custom_emojis @@ -6289,7 +6289,7 @@ ALTER TABLE ONLY public.custom_emojis -- --- Name: custom_filter_keywords custom_filter_keywords_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: custom_filter_keywords custom_filter_keywords_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.custom_filter_keywords @@ -6297,7 +6297,7 @@ ALTER TABLE ONLY public.custom_filter_keywords -- --- Name: custom_filter_statuses custom_filter_statuses_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: custom_filter_statuses custom_filter_statuses_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.custom_filter_statuses @@ -6305,7 +6305,7 @@ ALTER TABLE ONLY public.custom_filter_statuses -- --- Name: custom_filters custom_filters_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: custom_filters custom_filters_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.custom_filters @@ -6313,7 +6313,7 @@ ALTER TABLE ONLY public.custom_filters -- --- Name: devices devices_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: devices devices_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.devices @@ -6321,7 +6321,7 @@ ALTER TABLE ONLY public.devices -- --- Name: domain_allows domain_allows_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: domain_allows domain_allows_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.domain_allows @@ -6329,7 +6329,7 @@ ALTER TABLE ONLY public.domain_allows -- --- Name: domain_blocks domain_blocks_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: domain_blocks domain_blocks_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.domain_blocks @@ -6337,7 +6337,7 @@ ALTER TABLE ONLY public.domain_blocks -- --- Name: email_domain_blocks email_domain_blocks_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: email_domain_blocks email_domain_blocks_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.email_domain_blocks @@ -6345,7 +6345,7 @@ ALTER TABLE ONLY public.email_domain_blocks -- --- Name: encrypted_messages encrypted_messages_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: encrypted_messages encrypted_messages_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.encrypted_messages @@ -6353,7 +6353,7 @@ ALTER TABLE ONLY public.encrypted_messages -- --- Name: favourites favourites_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: favourites favourites_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.favourites @@ -6361,7 +6361,7 @@ ALTER TABLE ONLY public.favourites -- --- Name: featured_tags featured_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: featured_tags featured_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.featured_tags @@ -6369,7 +6369,7 @@ ALTER TABLE ONLY public.featured_tags -- --- Name: follow_recommendation_suppressions follow_recommendation_suppressions_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: follow_recommendation_suppressions follow_recommendation_suppressions_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.follow_recommendation_suppressions @@ -6377,7 +6377,7 @@ ALTER TABLE ONLY public.follow_recommendation_suppressions -- --- Name: follow_requests follow_requests_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: follow_requests follow_requests_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.follow_requests @@ -6385,7 +6385,7 @@ ALTER TABLE ONLY public.follow_requests -- --- Name: follows follows_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: follows follows_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.follows @@ -6393,7 +6393,7 @@ ALTER TABLE ONLY public.follows -- --- Name: imports imports_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: imports imports_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.imports @@ -6401,7 +6401,7 @@ ALTER TABLE ONLY public.imports -- --- Name: identities index_identities_on_id; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: identities index_identities_on_id; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.identities @@ -6409,7 +6409,7 @@ ALTER TABLE ONLY public.identities -- --- Name: invites invites_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: invites invites_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.invites @@ -6417,7 +6417,7 @@ ALTER TABLE ONLY public.invites -- --- Name: ip_blocks ip_blocks_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: ip_blocks ip_blocks_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.ip_blocks @@ -6425,7 +6425,7 @@ ALTER TABLE ONLY public.ip_blocks -- --- Name: list_accounts list_accounts_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: list_accounts list_accounts_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.list_accounts @@ -6433,7 +6433,7 @@ ALTER TABLE ONLY public.list_accounts -- --- Name: lists lists_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: lists lists_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.lists @@ -6441,7 +6441,7 @@ ALTER TABLE ONLY public.lists -- --- Name: login_activities login_activities_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: login_activities login_activities_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.login_activities @@ -6449,7 +6449,7 @@ ALTER TABLE ONLY public.login_activities -- --- Name: markers markers_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: markers markers_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.markers @@ -6457,7 +6457,7 @@ ALTER TABLE ONLY public.markers -- --- Name: media_attachments media_attachments_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: media_attachments media_attachments_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.media_attachments @@ -6465,7 +6465,7 @@ ALTER TABLE ONLY public.media_attachments -- --- Name: mentions mentions_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: mentions mentions_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.mentions @@ -6473,7 +6473,7 @@ ALTER TABLE ONLY public.mentions -- --- Name: mutes mutes_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: mutes mutes_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.mutes @@ -6481,7 +6481,7 @@ ALTER TABLE ONLY public.mutes -- --- Name: notifications notifications_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: notifications notifications_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.notifications @@ -6489,7 +6489,7 @@ ALTER TABLE ONLY public.notifications -- --- Name: oauth_access_grants oauth_access_grants_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: oauth_access_grants oauth_access_grants_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.oauth_access_grants @@ -6497,7 +6497,7 @@ ALTER TABLE ONLY public.oauth_access_grants -- --- Name: oauth_access_tokens oauth_access_tokens_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: oauth_access_tokens oauth_access_tokens_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.oauth_access_tokens @@ -6505,7 +6505,7 @@ ALTER TABLE ONLY public.oauth_access_tokens -- --- Name: oauth_applications oauth_applications_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: oauth_applications oauth_applications_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.oauth_applications @@ -6513,7 +6513,7 @@ ALTER TABLE ONLY public.oauth_applications -- --- Name: one_time_keys one_time_keys_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: one_time_keys one_time_keys_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.one_time_keys @@ -6521,7 +6521,7 @@ ALTER TABLE ONLY public.one_time_keys -- --- Name: pghero_space_stats pghero_space_stats_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: pghero_space_stats pghero_space_stats_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.pghero_space_stats @@ -6529,7 +6529,7 @@ ALTER TABLE ONLY public.pghero_space_stats -- --- Name: poll_votes poll_votes_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: poll_votes poll_votes_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.poll_votes @@ -6537,7 +6537,7 @@ ALTER TABLE ONLY public.poll_votes -- --- Name: polls polls_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: polls polls_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.polls @@ -6545,7 +6545,7 @@ ALTER TABLE ONLY public.polls -- --- Name: preview_card_providers preview_card_providers_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: preview_card_providers preview_card_providers_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.preview_card_providers @@ -6553,7 +6553,7 @@ ALTER TABLE ONLY public.preview_card_providers -- --- Name: preview_card_trends preview_card_trends_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: preview_card_trends preview_card_trends_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.preview_card_trends @@ -6561,7 +6561,7 @@ ALTER TABLE ONLY public.preview_card_trends -- --- Name: preview_cards preview_cards_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: preview_cards preview_cards_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.preview_cards @@ -6569,7 +6569,7 @@ ALTER TABLE ONLY public.preview_cards -- --- Name: relays relays_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: relays relays_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.relays @@ -6577,7 +6577,7 @@ ALTER TABLE ONLY public.relays -- --- Name: report_notes report_notes_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: report_notes report_notes_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.report_notes @@ -6585,7 +6585,7 @@ ALTER TABLE ONLY public.report_notes -- --- Name: reports reports_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: reports reports_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.reports @@ -6593,7 +6593,7 @@ ALTER TABLE ONLY public.reports -- --- Name: rules rules_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: rules rules_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.rules @@ -6601,7 +6601,7 @@ ALTER TABLE ONLY public.rules -- --- Name: scheduled_statuses scheduled_statuses_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: scheduled_statuses scheduled_statuses_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.scheduled_statuses @@ -6609,7 +6609,7 @@ ALTER TABLE ONLY public.scheduled_statuses -- --- Name: schema_migrations schema_migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: schema_migrations schema_migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.schema_migrations @@ -6617,7 +6617,7 @@ ALTER TABLE ONLY public.schema_migrations -- --- Name: session_activations session_activations_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: session_activations session_activations_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.session_activations @@ -6625,7 +6625,7 @@ ALTER TABLE ONLY public.session_activations -- --- Name: settings settings_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: settings settings_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.settings @@ -6633,7 +6633,7 @@ ALTER TABLE ONLY public.settings -- --- Name: site_uploads site_uploads_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: site_uploads site_uploads_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.site_uploads @@ -6641,7 +6641,7 @@ ALTER TABLE ONLY public.site_uploads -- --- Name: status_edits status_edits_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: status_edits status_edits_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.status_edits @@ -6649,7 +6649,7 @@ ALTER TABLE ONLY public.status_edits -- --- Name: status_pins status_pins_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: status_pins status_pins_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.status_pins @@ -6657,7 +6657,7 @@ ALTER TABLE ONLY public.status_pins -- --- Name: status_stats status_stats_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: status_stats status_stats_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.status_stats @@ -6665,7 +6665,7 @@ ALTER TABLE ONLY public.status_stats -- --- Name: status_trends status_trends_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: status_trends status_trends_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.status_trends @@ -6673,7 +6673,7 @@ ALTER TABLE ONLY public.status_trends -- --- Name: statuses statuses_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: statuses statuses_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.statuses @@ -6681,7 +6681,7 @@ ALTER TABLE ONLY public.statuses -- --- Name: system_keys system_keys_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: system_keys system_keys_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.system_keys @@ -6689,7 +6689,7 @@ ALTER TABLE ONLY public.system_keys -- --- Name: tag_follows tag_follows_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: tag_follows tag_follows_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.tag_follows @@ -6697,7 +6697,7 @@ ALTER TABLE ONLY public.tag_follows -- --- Name: tags tags_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: tags tags_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.tags @@ -6705,7 +6705,7 @@ ALTER TABLE ONLY public.tags -- --- Name: tombstones tombstones_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: tombstones tombstones_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.tombstones @@ -6713,7 +6713,7 @@ ALTER TABLE ONLY public.tombstones -- --- Name: unavailable_domains unavailable_domains_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: unavailable_domains unavailable_domains_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.unavailable_domains @@ -6721,7 +6721,7 @@ ALTER TABLE ONLY public.unavailable_domains -- --- Name: user_invite_requests user_invite_requests_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: user_invite_requests user_invite_requests_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.user_invite_requests @@ -6729,7 +6729,7 @@ ALTER TABLE ONLY public.user_invite_requests -- --- Name: user_roles user_roles_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: user_roles user_roles_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.user_roles @@ -6737,7 +6737,7 @@ ALTER TABLE ONLY public.user_roles -- --- Name: users users_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: users users_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.users @@ -6745,7 +6745,7 @@ ALTER TABLE ONLY public.users -- --- Name: web_push_subscriptions web_push_subscriptions_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: web_push_subscriptions web_push_subscriptions_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.web_push_subscriptions @@ -6753,7 +6753,7 @@ ALTER TABLE ONLY public.web_push_subscriptions -- --- Name: web_settings web_settings_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: web_settings web_settings_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.web_settings @@ -6761,7 +6761,7 @@ ALTER TABLE ONLY public.web_settings -- --- Name: webauthn_credentials webauthn_credentials_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: webauthn_credentials webauthn_credentials_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.webauthn_credentials @@ -6769,7 +6769,7 @@ ALTER TABLE ONLY public.webauthn_credentials -- --- Name: webhooks webhooks_pkey; Type: CONSTRAINT; Schema: public; Owner: pinafore +-- Name: webhooks webhooks_pkey; Type: CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.webhooks @@ -6777,1106 +6777,1106 @@ ALTER TABLE ONLY public.webhooks -- --- Name: index_account_aliases_on_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_account_aliases_on_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_account_aliases_on_account_id ON public.account_aliases USING btree (account_id); -- --- Name: index_account_conversations_on_conversation_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_account_conversations_on_conversation_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_account_conversations_on_conversation_id ON public.account_conversations USING btree (conversation_id); -- --- Name: index_account_deletion_requests_on_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_account_deletion_requests_on_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_account_deletion_requests_on_account_id ON public.account_deletion_requests USING btree (account_id); -- --- Name: index_account_domain_blocks_on_account_id_and_domain; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_account_domain_blocks_on_account_id_and_domain; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_account_domain_blocks_on_account_id_and_domain ON public.account_domain_blocks USING btree (account_id, domain); -- --- Name: index_account_migrations_on_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_account_migrations_on_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_account_migrations_on_account_id ON public.account_migrations USING btree (account_id); -- --- Name: index_account_migrations_on_target_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_account_migrations_on_target_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_account_migrations_on_target_account_id ON public.account_migrations USING btree (target_account_id) WHERE (target_account_id IS NOT NULL); -- --- Name: index_account_moderation_notes_on_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_account_moderation_notes_on_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_account_moderation_notes_on_account_id ON public.account_moderation_notes USING btree (account_id); -- --- Name: index_account_moderation_notes_on_target_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_account_moderation_notes_on_target_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_account_moderation_notes_on_target_account_id ON public.account_moderation_notes USING btree (target_account_id); -- --- Name: index_account_notes_on_account_id_and_target_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_account_notes_on_account_id_and_target_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_account_notes_on_account_id_and_target_account_id ON public.account_notes USING btree (account_id, target_account_id); -- --- Name: index_account_notes_on_target_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_account_notes_on_target_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_account_notes_on_target_account_id ON public.account_notes USING btree (target_account_id); -- --- Name: index_account_pins_on_account_id_and_target_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_account_pins_on_account_id_and_target_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_account_pins_on_account_id_and_target_account_id ON public.account_pins USING btree (account_id, target_account_id); -- --- Name: index_account_pins_on_target_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_account_pins_on_target_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_account_pins_on_target_account_id ON public.account_pins USING btree (target_account_id); -- --- Name: index_account_stats_on_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_account_stats_on_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_account_stats_on_account_id ON public.account_stats USING btree (account_id); -- --- Name: index_account_statuses_cleanup_policies_on_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_account_statuses_cleanup_policies_on_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_account_statuses_cleanup_policies_on_account_id ON public.account_statuses_cleanup_policies USING btree (account_id); -- --- Name: index_account_summaries_on_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_account_summaries_on_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_account_summaries_on_account_id ON public.account_summaries USING btree (account_id); -- --- Name: index_account_warnings_on_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_account_warnings_on_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_account_warnings_on_account_id ON public.account_warnings USING btree (account_id); -- --- Name: index_account_warnings_on_target_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_account_warnings_on_target_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_account_warnings_on_target_account_id ON public.account_warnings USING btree (target_account_id); -- --- Name: index_accounts_on_moved_to_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_accounts_on_moved_to_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_accounts_on_moved_to_account_id ON public.accounts USING btree (moved_to_account_id) WHERE (moved_to_account_id IS NOT NULL); -- --- Name: index_accounts_on_uri; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_accounts_on_uri; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_accounts_on_uri ON public.accounts USING btree (uri); -- --- Name: index_accounts_on_url; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_accounts_on_url; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_accounts_on_url ON public.accounts USING btree (url text_pattern_ops) WHERE (url IS NOT NULL); -- --- Name: index_accounts_on_username_and_domain_lower; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_accounts_on_username_and_domain_lower; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_accounts_on_username_and_domain_lower ON public.accounts USING btree (lower((username)::text), COALESCE(lower((domain)::text), ''::text)); -- --- Name: index_accounts_tags_on_account_id_and_tag_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_accounts_tags_on_account_id_and_tag_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_accounts_tags_on_account_id_and_tag_id ON public.accounts_tags USING btree (account_id, tag_id); -- --- Name: index_accounts_tags_on_tag_id_and_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_accounts_tags_on_tag_id_and_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_accounts_tags_on_tag_id_and_account_id ON public.accounts_tags USING btree (tag_id, account_id); -- --- Name: index_admin_action_logs_on_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_admin_action_logs_on_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_admin_action_logs_on_account_id ON public.admin_action_logs USING btree (account_id); -- --- Name: index_admin_action_logs_on_target_type_and_target_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_admin_action_logs_on_target_type_and_target_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_admin_action_logs_on_target_type_and_target_id ON public.admin_action_logs USING btree (target_type, target_id); -- --- Name: index_announcement_mutes_on_account_id_and_announcement_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_announcement_mutes_on_account_id_and_announcement_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_announcement_mutes_on_account_id_and_announcement_id ON public.announcement_mutes USING btree (account_id, announcement_id); -- --- Name: index_announcement_mutes_on_announcement_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_announcement_mutes_on_announcement_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_announcement_mutes_on_announcement_id ON public.announcement_mutes USING btree (announcement_id); -- --- Name: index_announcement_reactions_on_account_id_and_announcement_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_announcement_reactions_on_account_id_and_announcement_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_announcement_reactions_on_account_id_and_announcement_id ON public.announcement_reactions USING btree (account_id, announcement_id, name); -- --- Name: index_announcement_reactions_on_announcement_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_announcement_reactions_on_announcement_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_announcement_reactions_on_announcement_id ON public.announcement_reactions USING btree (announcement_id); -- --- Name: index_announcement_reactions_on_custom_emoji_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_announcement_reactions_on_custom_emoji_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_announcement_reactions_on_custom_emoji_id ON public.announcement_reactions USING btree (custom_emoji_id) WHERE (custom_emoji_id IS NOT NULL); -- --- Name: index_appeals_on_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_appeals_on_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_appeals_on_account_id ON public.appeals USING btree (account_id); -- --- Name: index_appeals_on_account_warning_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_appeals_on_account_warning_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_appeals_on_account_warning_id ON public.appeals USING btree (account_warning_id); -- --- Name: index_appeals_on_approved_by_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_appeals_on_approved_by_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_appeals_on_approved_by_account_id ON public.appeals USING btree (approved_by_account_id) WHERE (approved_by_account_id IS NOT NULL); -- --- Name: index_appeals_on_rejected_by_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_appeals_on_rejected_by_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_appeals_on_rejected_by_account_id ON public.appeals USING btree (rejected_by_account_id) WHERE (rejected_by_account_id IS NOT NULL); -- --- Name: index_blocks_on_account_id_and_target_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_blocks_on_account_id_and_target_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_blocks_on_account_id_and_target_account_id ON public.blocks USING btree (account_id, target_account_id); -- --- Name: index_blocks_on_target_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_blocks_on_target_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_blocks_on_target_account_id ON public.blocks USING btree (target_account_id); -- --- Name: index_bookmarks_on_account_id_and_status_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_bookmarks_on_account_id_and_status_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_bookmarks_on_account_id_and_status_id ON public.bookmarks USING btree (account_id, status_id); -- --- Name: index_bookmarks_on_status_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_bookmarks_on_status_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_bookmarks_on_status_id ON public.bookmarks USING btree (status_id); -- --- Name: index_canonical_email_blocks_on_canonical_email_hash; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_canonical_email_blocks_on_canonical_email_hash; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_canonical_email_blocks_on_canonical_email_hash ON public.canonical_email_blocks USING btree (canonical_email_hash); -- --- Name: index_canonical_email_blocks_on_reference_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_canonical_email_blocks_on_reference_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_canonical_email_blocks_on_reference_account_id ON public.canonical_email_blocks USING btree (reference_account_id); -- --- Name: index_conversation_mutes_on_account_id_and_conversation_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_conversation_mutes_on_account_id_and_conversation_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_conversation_mutes_on_account_id_and_conversation_id ON public.conversation_mutes USING btree (account_id, conversation_id); -- --- Name: index_conversations_on_uri; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_conversations_on_uri; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_conversations_on_uri ON public.conversations USING btree (uri text_pattern_ops) WHERE (uri IS NOT NULL); -- --- Name: index_custom_emoji_categories_on_name; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_custom_emoji_categories_on_name; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_custom_emoji_categories_on_name ON public.custom_emoji_categories USING btree (name); -- --- Name: index_custom_emojis_on_shortcode_and_domain; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_custom_emojis_on_shortcode_and_domain; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_custom_emojis_on_shortcode_and_domain ON public.custom_emojis USING btree (shortcode, domain); -- --- Name: index_custom_filter_keywords_on_custom_filter_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_custom_filter_keywords_on_custom_filter_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_custom_filter_keywords_on_custom_filter_id ON public.custom_filter_keywords USING btree (custom_filter_id); -- --- Name: index_custom_filter_statuses_on_custom_filter_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_custom_filter_statuses_on_custom_filter_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_custom_filter_statuses_on_custom_filter_id ON public.custom_filter_statuses USING btree (custom_filter_id); -- --- Name: index_custom_filter_statuses_on_status_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_custom_filter_statuses_on_status_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_custom_filter_statuses_on_status_id ON public.custom_filter_statuses USING btree (status_id); -- --- Name: index_custom_filters_on_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_custom_filters_on_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_custom_filters_on_account_id ON public.custom_filters USING btree (account_id); -- --- Name: index_devices_on_access_token_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_devices_on_access_token_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_devices_on_access_token_id ON public.devices USING btree (access_token_id); -- --- Name: index_devices_on_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_devices_on_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_devices_on_account_id ON public.devices USING btree (account_id); -- --- Name: index_domain_allows_on_domain; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_domain_allows_on_domain; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_domain_allows_on_domain ON public.domain_allows USING btree (domain); -- --- Name: index_domain_blocks_on_domain; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_domain_blocks_on_domain; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_domain_blocks_on_domain ON public.domain_blocks USING btree (domain); -- --- Name: index_email_domain_blocks_on_domain; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_email_domain_blocks_on_domain; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_email_domain_blocks_on_domain ON public.email_domain_blocks USING btree (domain); -- --- Name: index_encrypted_messages_on_device_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_encrypted_messages_on_device_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_encrypted_messages_on_device_id ON public.encrypted_messages USING btree (device_id); -- --- Name: index_encrypted_messages_on_from_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_encrypted_messages_on_from_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_encrypted_messages_on_from_account_id ON public.encrypted_messages USING btree (from_account_id); -- --- Name: index_favourites_on_account_id_and_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_favourites_on_account_id_and_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_favourites_on_account_id_and_id ON public.favourites USING btree (account_id, id); -- --- Name: index_favourites_on_account_id_and_status_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_favourites_on_account_id_and_status_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_favourites_on_account_id_and_status_id ON public.favourites USING btree (account_id, status_id); -- --- Name: index_favourites_on_status_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_favourites_on_status_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_favourites_on_status_id ON public.favourites USING btree (status_id); -- --- Name: index_featured_tags_on_account_id_and_tag_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_featured_tags_on_account_id_and_tag_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_featured_tags_on_account_id_and_tag_id ON public.featured_tags USING btree (account_id, tag_id); -- --- Name: index_featured_tags_on_tag_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_featured_tags_on_tag_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_featured_tags_on_tag_id ON public.featured_tags USING btree (tag_id); -- --- Name: index_follow_recommendation_suppressions_on_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_follow_recommendation_suppressions_on_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_follow_recommendation_suppressions_on_account_id ON public.follow_recommendation_suppressions USING btree (account_id); -- --- Name: index_follow_recommendations_on_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_follow_recommendations_on_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_follow_recommendations_on_account_id ON public.follow_recommendations USING btree (account_id); -- --- Name: index_follow_requests_on_account_id_and_target_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_follow_requests_on_account_id_and_target_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_follow_requests_on_account_id_and_target_account_id ON public.follow_requests USING btree (account_id, target_account_id); -- --- Name: index_follows_on_account_id_and_target_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_follows_on_account_id_and_target_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_follows_on_account_id_and_target_account_id ON public.follows USING btree (account_id, target_account_id); -- --- Name: index_follows_on_target_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_follows_on_target_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_follows_on_target_account_id ON public.follows USING btree (target_account_id); -- --- Name: index_identities_on_user_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_identities_on_user_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_identities_on_user_id ON public.identities USING btree (user_id); -- --- Name: index_instances_on_domain; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_instances_on_domain; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_instances_on_domain ON public.instances USING btree (domain); -- --- Name: index_invites_on_code; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_invites_on_code; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_invites_on_code ON public.invites USING btree (code); -- --- Name: index_invites_on_user_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_invites_on_user_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_invites_on_user_id ON public.invites USING btree (user_id); -- --- Name: index_ip_blocks_on_ip; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_ip_blocks_on_ip; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_ip_blocks_on_ip ON public.ip_blocks USING btree (ip); -- --- Name: index_list_accounts_on_account_id_and_list_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_list_accounts_on_account_id_and_list_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_list_accounts_on_account_id_and_list_id ON public.list_accounts USING btree (account_id, list_id); -- --- Name: index_list_accounts_on_follow_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_list_accounts_on_follow_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_list_accounts_on_follow_id ON public.list_accounts USING btree (follow_id) WHERE (follow_id IS NOT NULL); -- --- Name: index_list_accounts_on_list_id_and_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_list_accounts_on_list_id_and_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_list_accounts_on_list_id_and_account_id ON public.list_accounts USING btree (list_id, account_id); -- --- Name: index_lists_on_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_lists_on_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_lists_on_account_id ON public.lists USING btree (account_id); -- --- Name: index_login_activities_on_user_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_login_activities_on_user_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_login_activities_on_user_id ON public.login_activities USING btree (user_id); -- --- Name: index_markers_on_user_id_and_timeline; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_markers_on_user_id_and_timeline; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_markers_on_user_id_and_timeline ON public.markers USING btree (user_id, timeline); -- --- Name: index_media_attachments_on_account_id_and_status_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_media_attachments_on_account_id_and_status_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_media_attachments_on_account_id_and_status_id ON public.media_attachments USING btree (account_id, status_id DESC); -- --- Name: index_media_attachments_on_scheduled_status_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_media_attachments_on_scheduled_status_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_media_attachments_on_scheduled_status_id ON public.media_attachments USING btree (scheduled_status_id) WHERE (scheduled_status_id IS NOT NULL); -- --- Name: index_media_attachments_on_shortcode; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_media_attachments_on_shortcode; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_media_attachments_on_shortcode ON public.media_attachments USING btree (shortcode text_pattern_ops) WHERE (shortcode IS NOT NULL); -- --- Name: index_media_attachments_on_status_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_media_attachments_on_status_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_media_attachments_on_status_id ON public.media_attachments USING btree (status_id); -- --- Name: index_mentions_on_account_id_and_status_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_mentions_on_account_id_and_status_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_mentions_on_account_id_and_status_id ON public.mentions USING btree (account_id, status_id); -- --- Name: index_mentions_on_status_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_mentions_on_status_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_mentions_on_status_id ON public.mentions USING btree (status_id); -- --- Name: index_mutes_on_account_id_and_target_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_mutes_on_account_id_and_target_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_mutes_on_account_id_and_target_account_id ON public.mutes USING btree (account_id, target_account_id); -- --- Name: index_mutes_on_target_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_mutes_on_target_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_mutes_on_target_account_id ON public.mutes USING btree (target_account_id); -- --- Name: index_notifications_on_account_id_and_id_and_type; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_notifications_on_account_id_and_id_and_type; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_notifications_on_account_id_and_id_and_type ON public.notifications USING btree (account_id, id DESC, type); -- --- Name: index_notifications_on_activity_id_and_activity_type; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_notifications_on_activity_id_and_activity_type; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_notifications_on_activity_id_and_activity_type ON public.notifications USING btree (activity_id, activity_type); -- --- Name: index_notifications_on_from_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_notifications_on_from_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_notifications_on_from_account_id ON public.notifications USING btree (from_account_id); -- --- Name: index_oauth_access_grants_on_resource_owner_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_oauth_access_grants_on_resource_owner_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_oauth_access_grants_on_resource_owner_id ON public.oauth_access_grants USING btree (resource_owner_id); -- --- Name: index_oauth_access_grants_on_token; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_oauth_access_grants_on_token; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_oauth_access_grants_on_token ON public.oauth_access_grants USING btree (token); -- --- Name: index_oauth_access_tokens_on_refresh_token; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_oauth_access_tokens_on_refresh_token; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_oauth_access_tokens_on_refresh_token ON public.oauth_access_tokens USING btree (refresh_token text_pattern_ops) WHERE (refresh_token IS NOT NULL); -- --- Name: index_oauth_access_tokens_on_resource_owner_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_oauth_access_tokens_on_resource_owner_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_oauth_access_tokens_on_resource_owner_id ON public.oauth_access_tokens USING btree (resource_owner_id) WHERE (resource_owner_id IS NOT NULL); -- --- Name: index_oauth_access_tokens_on_token; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_oauth_access_tokens_on_token; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_oauth_access_tokens_on_token ON public.oauth_access_tokens USING btree (token); -- --- Name: index_oauth_applications_on_owner_id_and_owner_type; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_oauth_applications_on_owner_id_and_owner_type; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_oauth_applications_on_owner_id_and_owner_type ON public.oauth_applications USING btree (owner_id, owner_type); -- --- Name: index_oauth_applications_on_uid; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_oauth_applications_on_uid; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_oauth_applications_on_uid ON public.oauth_applications USING btree (uid); -- --- Name: index_one_time_keys_on_device_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_one_time_keys_on_device_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_one_time_keys_on_device_id ON public.one_time_keys USING btree (device_id); -- --- Name: index_one_time_keys_on_key_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_one_time_keys_on_key_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_one_time_keys_on_key_id ON public.one_time_keys USING btree (key_id); -- --- Name: index_pghero_space_stats_on_database_and_captured_at; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_pghero_space_stats_on_database_and_captured_at; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_pghero_space_stats_on_database_and_captured_at ON public.pghero_space_stats USING btree (database, captured_at); -- --- Name: index_poll_votes_on_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_poll_votes_on_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_poll_votes_on_account_id ON public.poll_votes USING btree (account_id); -- --- Name: index_poll_votes_on_poll_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_poll_votes_on_poll_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_poll_votes_on_poll_id ON public.poll_votes USING btree (poll_id); -- --- Name: index_polls_on_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_polls_on_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_polls_on_account_id ON public.polls USING btree (account_id); -- --- Name: index_polls_on_status_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_polls_on_status_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_polls_on_status_id ON public.polls USING btree (status_id); -- --- Name: index_preview_card_providers_on_domain; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_preview_card_providers_on_domain; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_preview_card_providers_on_domain ON public.preview_card_providers USING btree (domain); -- --- Name: index_preview_card_trends_on_preview_card_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_preview_card_trends_on_preview_card_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_preview_card_trends_on_preview_card_id ON public.preview_card_trends USING btree (preview_card_id); -- --- Name: index_preview_cards_on_url; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_preview_cards_on_url; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_preview_cards_on_url ON public.preview_cards USING btree (url); -- --- Name: index_preview_cards_statuses_on_status_id_and_preview_card_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_preview_cards_statuses_on_status_id_and_preview_card_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_preview_cards_statuses_on_status_id_and_preview_card_id ON public.preview_cards_statuses USING btree (status_id, preview_card_id); -- --- Name: index_report_notes_on_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_report_notes_on_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_report_notes_on_account_id ON public.report_notes USING btree (account_id); -- --- Name: index_report_notes_on_report_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_report_notes_on_report_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_report_notes_on_report_id ON public.report_notes USING btree (report_id); -- --- Name: index_reports_on_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_reports_on_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_reports_on_account_id ON public.reports USING btree (account_id); -- --- Name: index_reports_on_action_taken_by_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_reports_on_action_taken_by_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_reports_on_action_taken_by_account_id ON public.reports USING btree (action_taken_by_account_id) WHERE (action_taken_by_account_id IS NOT NULL); -- --- Name: index_reports_on_assigned_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_reports_on_assigned_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_reports_on_assigned_account_id ON public.reports USING btree (assigned_account_id) WHERE (assigned_account_id IS NOT NULL); -- --- Name: index_reports_on_target_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_reports_on_target_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_reports_on_target_account_id ON public.reports USING btree (target_account_id); -- --- Name: index_scheduled_statuses_on_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_scheduled_statuses_on_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_scheduled_statuses_on_account_id ON public.scheduled_statuses USING btree (account_id); -- --- Name: index_scheduled_statuses_on_scheduled_at; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_scheduled_statuses_on_scheduled_at; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_scheduled_statuses_on_scheduled_at ON public.scheduled_statuses USING btree (scheduled_at); -- --- Name: index_session_activations_on_access_token_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_session_activations_on_access_token_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_session_activations_on_access_token_id ON public.session_activations USING btree (access_token_id); -- --- Name: index_session_activations_on_session_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_session_activations_on_session_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_session_activations_on_session_id ON public.session_activations USING btree (session_id); -- --- Name: index_session_activations_on_user_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_session_activations_on_user_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_session_activations_on_user_id ON public.session_activations USING btree (user_id); -- --- Name: index_settings_on_thing_type_and_thing_id_and_var; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_settings_on_thing_type_and_thing_id_and_var; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_settings_on_thing_type_and_thing_id_and_var ON public.settings USING btree (thing_type, thing_id, var); -- --- Name: index_site_uploads_on_var; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_site_uploads_on_var; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_site_uploads_on_var ON public.site_uploads USING btree (var); -- --- Name: index_status_edits_on_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_status_edits_on_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_status_edits_on_account_id ON public.status_edits USING btree (account_id); -- --- Name: index_status_edits_on_status_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_status_edits_on_status_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_status_edits_on_status_id ON public.status_edits USING btree (status_id); -- --- Name: index_status_pins_on_account_id_and_status_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_status_pins_on_account_id_and_status_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_status_pins_on_account_id_and_status_id ON public.status_pins USING btree (account_id, status_id); -- --- Name: index_status_pins_on_status_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_status_pins_on_status_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_status_pins_on_status_id ON public.status_pins USING btree (status_id); -- --- Name: index_status_stats_on_status_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_status_stats_on_status_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_status_stats_on_status_id ON public.status_stats USING btree (status_id); -- --- Name: index_status_trends_on_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_status_trends_on_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_status_trends_on_account_id ON public.status_trends USING btree (account_id); -- --- Name: index_status_trends_on_status_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_status_trends_on_status_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_status_trends_on_status_id ON public.status_trends USING btree (status_id); -- --- Name: index_statuses_20190820; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_statuses_20190820; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_statuses_20190820 ON public.statuses USING btree (account_id, id DESC, visibility, updated_at) WHERE (deleted_at IS NULL); -- --- Name: index_statuses_local_20190824; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_statuses_local_20190824; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_statuses_local_20190824 ON public.statuses USING btree (id DESC, account_id) WHERE ((local OR (uri IS NULL)) AND (deleted_at IS NULL) AND (visibility = 0) AND (reblog_of_id IS NULL) AND ((NOT reply) OR (in_reply_to_account_id = account_id))); -- --- Name: index_statuses_on_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_statuses_on_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_statuses_on_account_id ON public.statuses USING btree (account_id); -- --- Name: index_statuses_on_deleted_at; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_statuses_on_deleted_at; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_statuses_on_deleted_at ON public.statuses USING btree (deleted_at) WHERE (deleted_at IS NOT NULL); -- --- Name: index_statuses_on_in_reply_to_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_statuses_on_in_reply_to_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_statuses_on_in_reply_to_account_id ON public.statuses USING btree (in_reply_to_account_id) WHERE (in_reply_to_account_id IS NOT NULL); -- --- Name: index_statuses_on_in_reply_to_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_statuses_on_in_reply_to_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_statuses_on_in_reply_to_id ON public.statuses USING btree (in_reply_to_id) WHERE (in_reply_to_id IS NOT NULL); -- --- Name: index_statuses_on_reblog_of_id_and_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_statuses_on_reblog_of_id_and_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_statuses_on_reblog_of_id_and_account_id ON public.statuses USING btree (reblog_of_id, account_id); -- --- Name: index_statuses_on_uri; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_statuses_on_uri; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_statuses_on_uri ON public.statuses USING btree (uri text_pattern_ops) WHERE (uri IS NOT NULL); -- --- Name: index_statuses_public_20200119; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_statuses_public_20200119; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_statuses_public_20200119 ON public.statuses USING btree (id DESC, account_id) WHERE ((deleted_at IS NULL) AND (visibility = 0) AND (reblog_of_id IS NULL) AND ((NOT reply) OR (in_reply_to_account_id = account_id))); -- --- Name: index_statuses_tags_on_status_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_statuses_tags_on_status_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_statuses_tags_on_status_id ON public.statuses_tags USING btree (status_id); -- --- Name: index_statuses_tags_on_tag_id_and_status_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_statuses_tags_on_tag_id_and_status_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_statuses_tags_on_tag_id_and_status_id ON public.statuses_tags USING btree (tag_id, status_id); -- --- Name: index_tag_follows_on_account_id_and_tag_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_tag_follows_on_account_id_and_tag_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_tag_follows_on_account_id_and_tag_id ON public.tag_follows USING btree (account_id, tag_id); -- --- Name: index_tag_follows_on_tag_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_tag_follows_on_tag_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_tag_follows_on_tag_id ON public.tag_follows USING btree (tag_id); -- --- Name: index_tags_on_name_lower_btree; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_tags_on_name_lower_btree; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_tags_on_name_lower_btree ON public.tags USING btree (lower((name)::text) text_pattern_ops); -- --- Name: index_tombstones_on_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_tombstones_on_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_tombstones_on_account_id ON public.tombstones USING btree (account_id); -- --- Name: index_tombstones_on_uri; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_tombstones_on_uri; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_tombstones_on_uri ON public.tombstones USING btree (uri); -- --- Name: index_unavailable_domains_on_domain; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_unavailable_domains_on_domain; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_unavailable_domains_on_domain ON public.unavailable_domains USING btree (domain); -- --- Name: index_unique_conversations; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_unique_conversations; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_unique_conversations ON public.account_conversations USING btree (account_id, conversation_id, participant_account_ids); -- --- Name: index_user_invite_requests_on_user_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_user_invite_requests_on_user_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_user_invite_requests_on_user_id ON public.user_invite_requests USING btree (user_id); -- --- Name: index_users_on_account_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_users_on_account_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_users_on_account_id ON public.users USING btree (account_id); -- --- Name: index_users_on_confirmation_token; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_users_on_confirmation_token; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_users_on_confirmation_token ON public.users USING btree (confirmation_token); -- --- Name: index_users_on_created_by_application_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_users_on_created_by_application_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_users_on_created_by_application_id ON public.users USING btree (created_by_application_id) WHERE (created_by_application_id IS NOT NULL); -- --- Name: index_users_on_email; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_users_on_email; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_users_on_email ON public.users USING btree (email); -- --- Name: index_users_on_reset_password_token; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_users_on_reset_password_token; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_users_on_reset_password_token ON public.users USING btree (reset_password_token text_pattern_ops) WHERE (reset_password_token IS NOT NULL); -- --- Name: index_users_on_role_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_users_on_role_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_users_on_role_id ON public.users USING btree (role_id) WHERE (role_id IS NOT NULL); -- --- Name: index_web_push_subscriptions_on_access_token_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_web_push_subscriptions_on_access_token_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_web_push_subscriptions_on_access_token_id ON public.web_push_subscriptions USING btree (access_token_id) WHERE (access_token_id IS NOT NULL); -- --- Name: index_web_push_subscriptions_on_user_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_web_push_subscriptions_on_user_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_web_push_subscriptions_on_user_id ON public.web_push_subscriptions USING btree (user_id); -- --- Name: index_web_settings_on_user_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_web_settings_on_user_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_web_settings_on_user_id ON public.web_settings USING btree (user_id); -- --- Name: index_webauthn_credentials_on_external_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_webauthn_credentials_on_external_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_webauthn_credentials_on_external_id ON public.webauthn_credentials USING btree (external_id); -- --- Name: index_webauthn_credentials_on_user_id; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_webauthn_credentials_on_user_id; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX index_webauthn_credentials_on_user_id ON public.webauthn_credentials USING btree (user_id); -- --- Name: index_webhooks_on_url; Type: INDEX; Schema: public; Owner: pinafore +-- Name: index_webhooks_on_url; Type: INDEX; Schema: public; Owner: semaphore -- CREATE UNIQUE INDEX index_webhooks_on_url ON public.webhooks USING btree (url); -- --- Name: search_index; Type: INDEX; Schema: public; Owner: pinafore +-- Name: search_index; Type: INDEX; Schema: public; Owner: semaphore -- CREATE INDEX search_index ON public.accounts USING gin ((((setweight(to_tsvector('simple'::regconfig, (display_name)::text), 'A'::"char") || setweight(to_tsvector('simple'::regconfig, (username)::text), 'B'::"char")) || setweight(to_tsvector('simple'::regconfig, (COALESCE(domain, ''::character varying))::text), 'C'::"char")))); -- --- Name: web_settings fk_11910667b2; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: web_settings fk_11910667b2; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.web_settings @@ -7884,7 +7884,7 @@ ALTER TABLE ONLY public.web_settings -- --- Name: account_domain_blocks fk_206c6029bd; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: account_domain_blocks fk_206c6029bd; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.account_domain_blocks @@ -7892,7 +7892,7 @@ ALTER TABLE ONLY public.account_domain_blocks -- --- Name: conversation_mutes fk_225b4212bb; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: conversation_mutes fk_225b4212bb; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.conversation_mutes @@ -7900,7 +7900,7 @@ ALTER TABLE ONLY public.conversation_mutes -- --- Name: statuses_tags fk_3081861e21; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: statuses_tags fk_3081861e21; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.statuses_tags @@ -7908,7 +7908,7 @@ ALTER TABLE ONLY public.statuses_tags -- --- Name: follows fk_32ed1b5560; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: follows fk_32ed1b5560; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.follows @@ -7916,7 +7916,7 @@ ALTER TABLE ONLY public.follows -- --- Name: oauth_access_grants fk_34d54b0a33; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: oauth_access_grants fk_34d54b0a33; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.oauth_access_grants @@ -7924,7 +7924,7 @@ ALTER TABLE ONLY public.oauth_access_grants -- --- Name: blocks fk_4269e03e65; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: blocks fk_4269e03e65; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.blocks @@ -7932,7 +7932,7 @@ ALTER TABLE ONLY public.blocks -- --- Name: reports fk_4b81f7522c; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: reports fk_4b81f7522c; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.reports @@ -7940,7 +7940,7 @@ ALTER TABLE ONLY public.reports -- --- Name: users fk_50500f500d; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: users fk_50500f500d; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.users @@ -7948,7 +7948,7 @@ ALTER TABLE ONLY public.users -- --- Name: favourites fk_5eb6c2b873; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: favourites fk_5eb6c2b873; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.favourites @@ -7956,7 +7956,7 @@ ALTER TABLE ONLY public.favourites -- --- Name: oauth_access_grants fk_63b044929b; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: oauth_access_grants fk_63b044929b; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.oauth_access_grants @@ -7964,7 +7964,7 @@ ALTER TABLE ONLY public.oauth_access_grants -- --- Name: imports fk_6db1b6e408; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: imports fk_6db1b6e408; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.imports @@ -7972,7 +7972,7 @@ ALTER TABLE ONLY public.imports -- --- Name: follows fk_745ca29eac; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: follows fk_745ca29eac; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.follows @@ -7980,7 +7980,7 @@ ALTER TABLE ONLY public.follows -- --- Name: follow_requests fk_76d644b0e7; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: follow_requests fk_76d644b0e7; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.follow_requests @@ -7988,7 +7988,7 @@ ALTER TABLE ONLY public.follow_requests -- --- Name: follow_requests fk_9291ec025d; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: follow_requests fk_9291ec025d; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.follow_requests @@ -7996,7 +7996,7 @@ ALTER TABLE ONLY public.follow_requests -- --- Name: blocks fk_9571bfabc1; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: blocks fk_9571bfabc1; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.blocks @@ -8004,7 +8004,7 @@ ALTER TABLE ONLY public.blocks -- --- Name: session_activations fk_957e5bda89; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: session_activations fk_957e5bda89; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.session_activations @@ -8012,7 +8012,7 @@ ALTER TABLE ONLY public.session_activations -- --- Name: media_attachments fk_96dd81e81b; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: media_attachments fk_96dd81e81b; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.media_attachments @@ -8020,7 +8020,7 @@ ALTER TABLE ONLY public.media_attachments -- --- Name: mentions fk_970d43f9d1; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: mentions fk_970d43f9d1; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.mentions @@ -8028,7 +8028,7 @@ ALTER TABLE ONLY public.mentions -- --- Name: statuses fk_9bda1543f7; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: statuses fk_9bda1543f7; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.statuses @@ -8036,7 +8036,7 @@ ALTER TABLE ONLY public.statuses -- --- Name: oauth_applications fk_b0988c7c0a; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: oauth_applications fk_b0988c7c0a; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.oauth_applications @@ -8044,7 +8044,7 @@ ALTER TABLE ONLY public.oauth_applications -- --- Name: favourites fk_b0e856845e; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: favourites fk_b0e856845e; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.favourites @@ -8052,7 +8052,7 @@ ALTER TABLE ONLY public.favourites -- --- Name: mutes fk_b8d8daf315; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: mutes fk_b8d8daf315; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.mutes @@ -8060,7 +8060,7 @@ ALTER TABLE ONLY public.mutes -- --- Name: reports fk_bca45b75fd; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: reports fk_bca45b75fd; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.reports @@ -8068,7 +8068,7 @@ ALTER TABLE ONLY public.reports -- --- Name: identities fk_bea040f377; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: identities fk_bea040f377; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.identities @@ -8076,7 +8076,7 @@ ALTER TABLE ONLY public.identities -- --- Name: notifications fk_c141c8ee55; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: notifications fk_c141c8ee55; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.notifications @@ -8084,7 +8084,7 @@ ALTER TABLE ONLY public.notifications -- --- Name: statuses fk_c7fa917661; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: statuses fk_c7fa917661; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.statuses @@ -8092,7 +8092,7 @@ ALTER TABLE ONLY public.statuses -- --- Name: status_pins fk_d4cb435b62; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: status_pins fk_d4cb435b62; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.status_pins @@ -8100,7 +8100,7 @@ ALTER TABLE ONLY public.status_pins -- --- Name: session_activations fk_e5fda67334; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: session_activations fk_e5fda67334; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.session_activations @@ -8108,7 +8108,7 @@ ALTER TABLE ONLY public.session_activations -- --- Name: oauth_access_tokens fk_e84df68546; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: oauth_access_tokens fk_e84df68546; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.oauth_access_tokens @@ -8116,7 +8116,7 @@ ALTER TABLE ONLY public.oauth_access_tokens -- --- Name: reports fk_eb37af34f0; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: reports fk_eb37af34f0; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.reports @@ -8124,7 +8124,7 @@ ALTER TABLE ONLY public.reports -- --- Name: mutes fk_eecff219ea; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: mutes fk_eecff219ea; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.mutes @@ -8132,7 +8132,7 @@ ALTER TABLE ONLY public.mutes -- --- Name: oauth_access_tokens fk_f5fc4c1ee3; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: oauth_access_tokens fk_f5fc4c1ee3; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.oauth_access_tokens @@ -8140,7 +8140,7 @@ ALTER TABLE ONLY public.oauth_access_tokens -- --- Name: notifications fk_fbd6b0bf9e; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: notifications fk_fbd6b0bf9e; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.notifications @@ -8148,7 +8148,7 @@ ALTER TABLE ONLY public.notifications -- --- Name: tag_follows fk_rails_091e831473; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: tag_follows fk_rails_091e831473; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.tag_follows @@ -8156,7 +8156,7 @@ ALTER TABLE ONLY public.tag_follows -- --- Name: backups fk_rails_096669d221; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: backups fk_rails_096669d221; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.backups @@ -8164,7 +8164,7 @@ ALTER TABLE ONLY public.backups -- --- Name: tag_follows fk_rails_0deefe597f; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: tag_follows fk_rails_0deefe597f; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.tag_follows @@ -8172,7 +8172,7 @@ ALTER TABLE ONLY public.tag_follows -- --- Name: bookmarks fk_rails_11207ffcfd; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: bookmarks fk_rails_11207ffcfd; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.bookmarks @@ -8180,7 +8180,7 @@ ALTER TABLE ONLY public.bookmarks -- --- Name: account_conversations fk_rails_1491654f9f; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: account_conversations fk_rails_1491654f9f; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.account_conversations @@ -8188,7 +8188,7 @@ ALTER TABLE ONLY public.account_conversations -- --- Name: featured_tags fk_rails_174efcf15f; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: featured_tags fk_rails_174efcf15f; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.featured_tags @@ -8196,7 +8196,7 @@ ALTER TABLE ONLY public.featured_tags -- --- Name: canonical_email_blocks fk_rails_1ecb262096; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: canonical_email_blocks fk_rails_1ecb262096; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.canonical_email_blocks @@ -8204,7 +8204,7 @@ ALTER TABLE ONLY public.canonical_email_blocks -- --- Name: account_stats fk_rails_215bb31ff1; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: account_stats fk_rails_215bb31ff1; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.account_stats @@ -8212,7 +8212,7 @@ ALTER TABLE ONLY public.account_stats -- --- Name: accounts fk_rails_2320833084; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: accounts fk_rails_2320833084; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.accounts @@ -8220,7 +8220,7 @@ ALTER TABLE ONLY public.accounts -- --- Name: featured_tags fk_rails_23a9055c7c; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: featured_tags fk_rails_23a9055c7c; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.featured_tags @@ -8228,7 +8228,7 @@ ALTER TABLE ONLY public.featured_tags -- --- Name: scheduled_statuses fk_rails_23bd9018f9; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: scheduled_statuses fk_rails_23bd9018f9; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.scheduled_statuses @@ -8236,7 +8236,7 @@ ALTER TABLE ONLY public.scheduled_statuses -- --- Name: account_statuses_cleanup_policies fk_rails_23d5f73cfe; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: account_statuses_cleanup_policies fk_rails_23d5f73cfe; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.account_statuses_cleanup_policies @@ -8244,7 +8244,7 @@ ALTER TABLE ONLY public.account_statuses_cleanup_policies -- --- Name: statuses fk_rails_256483a9ab; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: statuses fk_rails_256483a9ab; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.statuses @@ -8252,7 +8252,7 @@ ALTER TABLE ONLY public.statuses -- --- Name: account_notes fk_rails_2801b48f1a; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: account_notes fk_rails_2801b48f1a; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.account_notes @@ -8260,7 +8260,7 @@ ALTER TABLE ONLY public.account_notes -- --- Name: custom_filter_statuses fk_rails_2f6d20c0cf; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: custom_filter_statuses fk_rails_2f6d20c0cf; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.custom_filter_statuses @@ -8268,7 +8268,7 @@ ALTER TABLE ONLY public.custom_filter_statuses -- --- Name: media_attachments fk_rails_31fc5aeef1; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: media_attachments fk_rails_31fc5aeef1; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.media_attachments @@ -8276,7 +8276,7 @@ ALTER TABLE ONLY public.media_attachments -- --- Name: preview_card_trends fk_rails_371593db34; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: preview_card_trends fk_rails_371593db34; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.preview_card_trends @@ -8284,7 +8284,7 @@ ALTER TABLE ONLY public.preview_card_trends -- --- Name: user_invite_requests fk_rails_3773f15361; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: user_invite_requests fk_rails_3773f15361; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.user_invite_requests @@ -8292,7 +8292,7 @@ ALTER TABLE ONLY public.user_invite_requests -- --- Name: lists fk_rails_3853b78dac; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: lists fk_rails_3853b78dac; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.lists @@ -8300,7 +8300,7 @@ ALTER TABLE ONLY public.lists -- --- Name: devices fk_rails_393f74df68; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: devices fk_rails_393f74df68; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.devices @@ -8308,7 +8308,7 @@ ALTER TABLE ONLY public.devices -- --- Name: polls fk_rails_3e0d9f1115; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: polls fk_rails_3e0d9f1115; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.polls @@ -8316,7 +8316,7 @@ ALTER TABLE ONLY public.polls -- --- Name: media_attachments fk_rails_3ec0cfdd70; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: media_attachments fk_rails_3ec0cfdd70; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.media_attachments @@ -8324,7 +8324,7 @@ ALTER TABLE ONLY public.media_attachments -- --- Name: account_moderation_notes fk_rails_3f8b75089b; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: account_moderation_notes fk_rails_3f8b75089b; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.account_moderation_notes @@ -8332,7 +8332,7 @@ ALTER TABLE ONLY public.account_moderation_notes -- --- Name: email_domain_blocks fk_rails_408efe0a15; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: email_domain_blocks fk_rails_408efe0a15; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.email_domain_blocks @@ -8340,7 +8340,7 @@ ALTER TABLE ONLY public.email_domain_blocks -- --- Name: list_accounts fk_rails_40f9cc29f1; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: list_accounts fk_rails_40f9cc29f1; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.list_accounts @@ -8348,7 +8348,7 @@ ALTER TABLE ONLY public.list_accounts -- --- Name: account_deletion_requests fk_rails_45bf2626b9; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: account_deletion_requests fk_rails_45bf2626b9; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.account_deletion_requests @@ -8356,7 +8356,7 @@ ALTER TABLE ONLY public.account_deletion_requests -- --- Name: status_stats fk_rails_4a247aac42; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: status_stats fk_rails_4a247aac42; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.status_stats @@ -8364,7 +8364,7 @@ ALTER TABLE ONLY public.status_stats -- --- Name: reports fk_rails_4e7a498fb4; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: reports fk_rails_4e7a498fb4; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.reports @@ -8372,7 +8372,7 @@ ALTER TABLE ONLY public.reports -- --- Name: account_notes fk_rails_4ee4503c69; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: account_notes fk_rails_4ee4503c69; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.account_notes @@ -8380,7 +8380,7 @@ ALTER TABLE ONLY public.account_notes -- --- Name: appeals fk_rails_501c3a6e13; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: appeals fk_rails_501c3a6e13; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.appeals @@ -8388,7 +8388,7 @@ ALTER TABLE ONLY public.appeals -- --- Name: mentions fk_rails_59edbe2887; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: mentions fk_rails_59edbe2887; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.mentions @@ -8396,7 +8396,7 @@ ALTER TABLE ONLY public.mentions -- --- Name: custom_filter_keywords fk_rails_5a49a74012; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: custom_filter_keywords fk_rails_5a49a74012; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.custom_filter_keywords @@ -8404,7 +8404,7 @@ ALTER TABLE ONLY public.custom_filter_keywords -- --- Name: conversation_mutes fk_rails_5ab139311f; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: conversation_mutes fk_rails_5ab139311f; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.conversation_mutes @@ -8412,7 +8412,7 @@ ALTER TABLE ONLY public.conversation_mutes -- --- Name: polls fk_rails_5b19a0c011; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: polls fk_rails_5b19a0c011; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.polls @@ -8420,7 +8420,7 @@ ALTER TABLE ONLY public.polls -- --- Name: users fk_rails_642f17018b; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: users fk_rails_642f17018b; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.users @@ -8428,7 +8428,7 @@ ALTER TABLE ONLY public.users -- --- Name: status_pins fk_rails_65c05552f1; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: status_pins fk_rails_65c05552f1; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.status_pins @@ -8436,7 +8436,7 @@ ALTER TABLE ONLY public.status_pins -- --- Name: status_trends fk_rails_68c610dc1a; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: status_trends fk_rails_68c610dc1a; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.status_trends @@ -8444,7 +8444,7 @@ ALTER TABLE ONLY public.status_trends -- --- Name: account_conversations fk_rails_6f5278b6e9; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: account_conversations fk_rails_6f5278b6e9; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.account_conversations @@ -8452,7 +8452,7 @@ ALTER TABLE ONLY public.account_conversations -- --- Name: announcement_reactions fk_rails_7444ad831f; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: announcement_reactions fk_rails_7444ad831f; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.announcement_reactions @@ -8460,7 +8460,7 @@ ALTER TABLE ONLY public.announcement_reactions -- --- Name: web_push_subscriptions fk_rails_751a9f390b; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: web_push_subscriptions fk_rails_751a9f390b; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.web_push_subscriptions @@ -8468,7 +8468,7 @@ ALTER TABLE ONLY public.web_push_subscriptions -- --- Name: report_notes fk_rails_7fa83a61eb; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: report_notes fk_rails_7fa83a61eb; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.report_notes @@ -8476,7 +8476,7 @@ ALTER TABLE ONLY public.report_notes -- --- Name: list_accounts fk_rails_85fee9d6ab; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: list_accounts fk_rails_85fee9d6ab; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.list_accounts @@ -8484,7 +8484,7 @@ ALTER TABLE ONLY public.list_accounts -- --- Name: custom_filters fk_rails_8b8d786993; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: custom_filters fk_rails_8b8d786993; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.custom_filters @@ -8492,7 +8492,7 @@ ALTER TABLE ONLY public.custom_filters -- --- Name: account_warnings fk_rails_8f2bab4b16; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: account_warnings fk_rails_8f2bab4b16; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.account_warnings @@ -8500,7 +8500,7 @@ ALTER TABLE ONLY public.account_warnings -- --- Name: users fk_rails_8fb2a43e88; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: users fk_rails_8fb2a43e88; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.users @@ -8508,7 +8508,7 @@ ALTER TABLE ONLY public.users -- --- Name: statuses fk_rails_94a6f70399; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: statuses fk_rails_94a6f70399; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.statuses @@ -8516,7 +8516,7 @@ ALTER TABLE ONLY public.statuses -- --- Name: announcement_mutes fk_rails_9c99f8e835; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: announcement_mutes fk_rails_9c99f8e835; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.announcement_mutes @@ -8524,7 +8524,7 @@ ALTER TABLE ONLY public.announcement_mutes -- --- Name: appeals fk_rails_9deb2f63ad; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: appeals fk_rails_9deb2f63ad; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.appeals @@ -8532,7 +8532,7 @@ ALTER TABLE ONLY public.appeals -- --- Name: bookmarks fk_rails_9f6ac182a6; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: bookmarks fk_rails_9f6ac182a6; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.bookmarks @@ -8540,7 +8540,7 @@ ALTER TABLE ONLY public.bookmarks -- --- Name: announcement_reactions fk_rails_a1226eaa5c; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: announcement_reactions fk_rails_a1226eaa5c; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.announcement_reactions @@ -8548,7 +8548,7 @@ ALTER TABLE ONLY public.announcement_reactions -- --- Name: account_pins fk_rails_a176e26c37; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: account_pins fk_rails_a176e26c37; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.account_pins @@ -8556,7 +8556,7 @@ ALTER TABLE ONLY public.account_pins -- --- Name: encrypted_messages fk_rails_a42ad0f8d5; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: encrypted_messages fk_rails_a42ad0f8d5; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.encrypted_messages @@ -8564,7 +8564,7 @@ ALTER TABLE ONLY public.encrypted_messages -- --- Name: webauthn_credentials fk_rails_a4355aef77; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: webauthn_credentials fk_rails_a4355aef77; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.webauthn_credentials @@ -8572,7 +8572,7 @@ ALTER TABLE ONLY public.webauthn_credentials -- --- Name: account_warnings fk_rails_a65a1bf71b; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: account_warnings fk_rails_a65a1bf71b; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.account_warnings @@ -8580,7 +8580,7 @@ ALTER TABLE ONLY public.account_warnings -- --- Name: status_trends fk_rails_a6b527ea49; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: status_trends fk_rails_a6b527ea49; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.status_trends @@ -8588,7 +8588,7 @@ ALTER TABLE ONLY public.status_trends -- --- Name: poll_votes fk_rails_a6e6974b7e; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: poll_votes fk_rails_a6e6974b7e; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.poll_votes @@ -8596,7 +8596,7 @@ ALTER TABLE ONLY public.poll_votes -- --- Name: markers fk_rails_a7009bc2b6; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: markers fk_rails_a7009bc2b6; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.markers @@ -8604,7 +8604,7 @@ ALTER TABLE ONLY public.markers -- --- Name: admin_action_logs fk_rails_a7667297fa; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: admin_action_logs fk_rails_a7667297fa; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.admin_action_logs @@ -8612,7 +8612,7 @@ ALTER TABLE ONLY public.admin_action_logs -- --- Name: devices fk_rails_a796b75798; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: devices fk_rails_a796b75798; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.devices @@ -8620,7 +8620,7 @@ ALTER TABLE ONLY public.devices -- --- Name: account_warnings fk_rails_a7ebbb1e37; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: account_warnings fk_rails_a7ebbb1e37; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.account_warnings @@ -8628,7 +8628,7 @@ ALTER TABLE ONLY public.account_warnings -- --- Name: encrypted_messages fk_rails_a83e4df7ae; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: encrypted_messages fk_rails_a83e4df7ae; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.encrypted_messages @@ -8636,7 +8636,7 @@ ALTER TABLE ONLY public.encrypted_messages -- --- Name: status_edits fk_rails_a960f234a0; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: status_edits fk_rails_a960f234a0; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.status_edits @@ -8644,7 +8644,7 @@ ALTER TABLE ONLY public.status_edits -- --- Name: appeals fk_rails_a99f14546e; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: appeals fk_rails_a99f14546e; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.appeals @@ -8652,7 +8652,7 @@ ALTER TABLE ONLY public.appeals -- --- Name: web_push_subscriptions fk_rails_b006f28dac; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: web_push_subscriptions fk_rails_b006f28dac; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.web_push_subscriptions @@ -8660,7 +8660,7 @@ ALTER TABLE ONLY public.web_push_subscriptions -- --- Name: poll_votes fk_rails_b6c18cf44a; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: poll_votes fk_rails_b6c18cf44a; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.poll_votes @@ -8668,7 +8668,7 @@ ALTER TABLE ONLY public.poll_votes -- --- Name: announcement_reactions fk_rails_b742c91c0e; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: announcement_reactions fk_rails_b742c91c0e; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.announcement_reactions @@ -8676,7 +8676,7 @@ ALTER TABLE ONLY public.announcement_reactions -- --- Name: account_migrations fk_rails_c9f701caaf; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: account_migrations fk_rails_c9f701caaf; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.account_migrations @@ -8684,7 +8684,7 @@ ALTER TABLE ONLY public.account_migrations -- --- Name: report_notes fk_rails_cae66353f3; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: report_notes fk_rails_cae66353f3; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.report_notes @@ -8692,7 +8692,7 @@ ALTER TABLE ONLY public.report_notes -- --- Name: one_time_keys fk_rails_d3edd8c878; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: one_time_keys fk_rails_d3edd8c878; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.one_time_keys @@ -8700,7 +8700,7 @@ ALTER TABLE ONLY public.one_time_keys -- --- Name: account_pins fk_rails_d44979e5dd; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: account_pins fk_rails_d44979e5dd; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.account_pins @@ -8708,7 +8708,7 @@ ALTER TABLE ONLY public.account_pins -- --- Name: account_migrations fk_rails_d9a8dad070; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: account_migrations fk_rails_d9a8dad070; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.account_migrations @@ -8716,7 +8716,7 @@ ALTER TABLE ONLY public.account_migrations -- --- Name: status_edits fk_rails_dc8988c545; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: status_edits fk_rails_dc8988c545; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.status_edits @@ -8724,7 +8724,7 @@ ALTER TABLE ONLY public.status_edits -- --- Name: account_moderation_notes fk_rails_dd62ed5ac3; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: account_moderation_notes fk_rails_dd62ed5ac3; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.account_moderation_notes @@ -8732,7 +8732,7 @@ ALTER TABLE ONLY public.account_moderation_notes -- --- Name: statuses_tags fk_rails_df0fe11427; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: statuses_tags fk_rails_df0fe11427; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.statuses_tags @@ -8740,7 +8740,7 @@ ALTER TABLE ONLY public.statuses_tags -- --- Name: follow_recommendation_suppressions fk_rails_dfb9a1dbe2; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: follow_recommendation_suppressions fk_rails_dfb9a1dbe2; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.follow_recommendation_suppressions @@ -8748,7 +8748,7 @@ ALTER TABLE ONLY public.follow_recommendation_suppressions -- --- Name: custom_filter_statuses fk_rails_e2ddaf5b14; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: custom_filter_statuses fk_rails_e2ddaf5b14; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.custom_filter_statuses @@ -8756,7 +8756,7 @@ ALTER TABLE ONLY public.custom_filter_statuses -- --- Name: announcement_mutes fk_rails_e35401adf1; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: announcement_mutes fk_rails_e35401adf1; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.announcement_mutes @@ -8764,7 +8764,7 @@ ALTER TABLE ONLY public.announcement_mutes -- --- Name: login_activities fk_rails_e4b6396b41; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: login_activities fk_rails_e4b6396b41; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.login_activities @@ -8772,7 +8772,7 @@ ALTER TABLE ONLY public.login_activities -- --- Name: list_accounts fk_rails_e54e356c88; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: list_accounts fk_rails_e54e356c88; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.list_accounts @@ -8780,7 +8780,7 @@ ALTER TABLE ONLY public.list_accounts -- --- Name: appeals fk_rails_ea84881569; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: appeals fk_rails_ea84881569; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.appeals @@ -8788,7 +8788,7 @@ ALTER TABLE ONLY public.appeals -- --- Name: users fk_rails_ecc9536e7c; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: users fk_rails_ecc9536e7c; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.users @@ -8796,7 +8796,7 @@ ALTER TABLE ONLY public.users -- --- Name: tombstones fk_rails_f95b861449; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: tombstones fk_rails_f95b861449; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.tombstones @@ -8804,7 +8804,7 @@ ALTER TABLE ONLY public.tombstones -- --- Name: account_aliases fk_rails_fc91575d08; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: account_aliases fk_rails_fc91575d08; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.account_aliases @@ -8812,7 +8812,7 @@ ALTER TABLE ONLY public.account_aliases -- --- Name: invites fk_rails_ff69dbb2ac; Type: FK CONSTRAINT; Schema: public; Owner: pinafore +-- Name: invites fk_rails_ff69dbb2ac; Type: FK CONSTRAINT; Schema: public; Owner: semaphore -- ALTER TABLE ONLY public.invites @@ -8820,7 +8820,7 @@ ALTER TABLE ONLY public.invites -- --- Name: instances; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: pinafore +-- Name: instances; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: semaphore -- REFRESH MATERIALIZED VIEW public.instances; diff --git a/tests/spec/001-basic-spec.js b/tests/spec/001-basic-spec.js index 7c2d8a3f..330d8475 100644 --- a/tests/spec/001-basic-spec.js +++ b/tests/spec/001-basic-spec.js @@ -6,7 +6,7 @@ fixture`001-basic-spec.js` test('has the correct <h1>', async t => { await t - .expect($('.main-content h1').innerText).eql('Pinafore') + .expect($('.main-content h1').innerText).eql('Semaphore') }) test('navigates to about', async t => { @@ -15,7 +15,7 @@ test('navigates to about', async t => { .expect(getUrl()).contains('/settings') .click('a[href="/settings/about"]') .expect(getUrl()).contains('/about') - .expect($('.main-content h1').innerText).eql('About Pinafore') + .expect($('.main-content h1').innerText).eql('About Semaphore') }) test('navigates to /settings/instances/add', async t => { diff --git a/tests/spec/040-shortcuts-search.js b/tests/spec/040-shortcuts-search.js index b9f1a92f..1966b2c2 100644 --- a/tests/spec/040-shortcuts-search.js +++ b/tests/spec/040-shortcuts-search.js @@ -39,7 +39,7 @@ test('Pressing / focuses the search input if we are already on the search page', test('Pressing / without logging in just goes to the search page', async t => { await t .expect(getUrl()).eql('http://localhost:4002/') - .expect($('.main-content h1').innerText).eql('Pinafore') + .expect($('.main-content h1').innerText).eql('Semaphore') await sleep(500) // wait for keyboard shortcuts to be active await t .pressKey('/')