|
| 1 | +SET statement_timeout = 0; |
| 2 | +SET lock_timeout = 0; |
| 3 | +SET idle_in_transaction_session_timeout = 0; |
| 4 | +SET client_encoding = 'UTF8'; |
| 5 | +SET standard_conforming_strings = on; |
| 6 | +SELECT pg_catalog.set_config('search_path', '', false); |
| 7 | +SET check_function_bodies = false; |
| 8 | +SET xmloption = content; |
| 9 | +SET client_min_messages = warning; |
| 10 | +SET row_security = off; |
| 11 | + |
| 12 | +SET default_tablespace = ''; |
| 13 | + |
| 14 | +SET default_table_access_method = heap; |
| 15 | + |
| 16 | +-- |
| 17 | +-- Name: ar_internal_metadata; Type: TABLE; Schema: public; Owner: - |
| 18 | +-- |
| 19 | + |
| 20 | +CREATE TABLE public.ar_internal_metadata ( |
| 21 | + key character varying NOT NULL, |
| 22 | + value character varying, |
| 23 | + created_at timestamp(6) without time zone NOT NULL, |
| 24 | + updated_at timestamp(6) without time zone NOT NULL |
| 25 | +); |
| 26 | + |
| 27 | + |
| 28 | +-- |
| 29 | +-- Name: schema_migrations; Type: TABLE; Schema: public; Owner: - |
| 30 | +-- |
| 31 | + |
| 32 | +CREATE TABLE public.schema_migrations ( |
| 33 | + version character varying NOT NULL |
| 34 | +); |
| 35 | + |
| 36 | + |
| 37 | +-- |
| 38 | +-- Name: ar_internal_metadata ar_internal_metadata_pkey; Type: CONSTRAINT; Schema: public; Owner: - |
| 39 | +-- |
| 40 | + |
| 41 | +ALTER TABLE ONLY public.ar_internal_metadata |
| 42 | + ADD CONSTRAINT ar_internal_metadata_pkey PRIMARY KEY (key); |
| 43 | + |
| 44 | + |
| 45 | +-- |
| 46 | +-- Name: schema_migrations schema_migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: - |
| 47 | +-- |
| 48 | + |
| 49 | +ALTER TABLE ONLY public.schema_migrations |
| 50 | + ADD CONSTRAINT schema_migrations_pkey PRIMARY KEY (version); |
| 51 | + |
| 52 | + |
| 53 | +-- |
| 54 | +-- PostgreSQL database dump complete |
| 55 | +-- |
| 56 | + |
| 57 | +SET search_path TO "$user", public; |
| 58 | + |
| 59 | +INSERT INTO "schema_migrations" (version) VALUES |
| 60 | +('20231228105803'); |
| 61 | + |
0 commit comments