comparison db/structure.sql @ 495:92929378413e

Update to latest rails
author nanaya <me@nanaya.net>
date Sun, 15 Dec 2024 22:18:06 +0900
parents 4608d12ebe03
children
comparison
equal deleted inserted replaced
494:e508d3226214 495:92929378413e
3 SET idle_in_transaction_session_timeout = 0; 3 SET idle_in_transaction_session_timeout = 0;
4 SET client_encoding = 'UTF8'; 4 SET client_encoding = 'UTF8';
5 SET standard_conforming_strings = on; 5 SET standard_conforming_strings = on;
6 SELECT pg_catalog.set_config('search_path', '', false); 6 SELECT pg_catalog.set_config('search_path', '', false);
7 SET check_function_bodies = false; 7 SET check_function_bodies = false;
8 SET xmloption = content;
8 SET client_min_messages = warning; 9 SET client_min_messages = warning;
9 SET row_security = off; 10 SET row_security = off;
10 11
11 SET default_tablespace = ''; 12 SET default_tablespace = '';
12 13
13 SET default_with_oids = false; 14 SET default_table_access_method = heap;
14 15
15 -- 16 --
16 -- Name: ar_internal_metadata; Type: TABLE; Schema: public; Owner: - 17 -- Name: ar_internal_metadata; Type: TABLE; Schema: public; Owner: -
17 -- 18 --
18 19
120 -- 121 --
121 122
122 SET search_path TO "$user", public; 123 SET search_path TO "$user", public;
123 124
124 INSERT INTO "schema_migrations" (version) VALUES 125 INSERT INTO "schema_migrations" (version) VALUES
125 ('20120826180414'), 126 ('20180625074738'),
127 ('20150916161622'),
128 ('20150914054154'),
129 ('20130512032335'),
130 ('20130511133450'),
131 ('20130201150322'),
132 ('20120905074204'),
133 ('20120905072325'),
126 ('20120826182012'), 134 ('20120826182012'),
127 ('20120905072325'), 135 ('20120826180414');
128 ('20120905074204'),
129 ('20130201150322'),
130 ('20130511133450'),
131 ('20130512032335'),
132 ('20150914054154'),
133 ('20150916161622'),
134 ('20180625074738');
135 136
136