diff 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
line wrap: on
line diff
--- a/db/structure.sql	Sun Oct 29 23:24:13 2023 +0900
+++ b/db/structure.sql	Sun Dec 15 22:18:06 2024 +0900
@@ -5,12 +5,13 @@
 SET standard_conforming_strings = on;
 SELECT pg_catalog.set_config('search_path', '', false);
 SET check_function_bodies = false;
+SET xmloption = content;
 SET client_min_messages = warning;
 SET row_security = off;
 
 SET default_tablespace = '';
 
-SET default_with_oids = false;
+SET default_table_access_method = heap;
 
 --
 -- Name: ar_internal_metadata; Type: TABLE; Schema: public; Owner: -
@@ -122,15 +123,14 @@
 SET search_path TO "$user", public;
 
 INSERT INTO "schema_migrations" (version) VALUES
-('20120826180414'),
-('20120826182012'),
-('20120905072325'),
-('20120905074204'),
-('20130201150322'),
+('20180625074738'),
+('20150916161622'),
+('20150914054154'),
+('20130512032335'),
 ('20130511133450'),
-('20130512032335'),
-('20150914054154'),
-('20150916161622'),
-('20180625074738');
+('20130201150322'),
+('20120905074204'),
+('20120905072325'),
+('20120826182012'),
+('20120826180414');
 
-