| -- |
| -- Licensed to the Apache Software Foundation (ASF) under one or more |
| -- contributor license agreements. See the NOTICE file distributed with |
| -- this work for additional information regarding copyright ownership. |
| -- The ASF licenses this file to You under the Apache License, Version 2.0 |
| -- (the "License"); you may not use this file except in compliance with |
| -- the License. You may obtain a copy of the License at |
| -- |
| -- http://www.apache.org/licenses/LICENSE-2.0 |
| -- |
| -- Unless required by applicable law or agreed to in writing, software |
| -- distributed under the License is distributed on an "AS IS" BASIS, |
| -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| -- See the License for the specific language governing permissions and |
| -- limitations under the License. |
| -- |
| |
| -- for AT mode you must to init this sql for you business database. the seata server not need it. |
| CREATE TABLE IF NOT EXISTS public.undo_log |
| ( |
| id SERIAL NOT NULL, |
| branch_id BIGINT NOT NULL, |
| xid VARCHAR(128) NOT NULL, |
| context VARCHAR(128) NOT NULL, |
| rollback_info BYTEA NOT NULL, |
| log_status INT NOT NULL, |
| log_created TIMESTAMP(0) NOT NULL, |
| log_modified TIMESTAMP(0) NOT NULL, |
| CONSTRAINT pk_undo_log PRIMARY KEY (id), |
| CONSTRAINT ux_undo_log UNIQUE (xid, branch_id) |
| ); |
| CREATE INDEX ix_log_created ON undo_log(log_created); |
| |
| COMMENT ON TABLE public.undo_log IS 'AT transaction mode undo table'; |
| COMMENT ON COLUMN public.undo_log.branch_id IS 'branch transaction id'; |
| COMMENT ON COLUMN public.undo_log.xid IS 'global transaction id'; |
| COMMENT ON COLUMN public.undo_log.context IS 'undo_log context,such as serialization'; |
| COMMENT ON COLUMN public.undo_log.rollback_info IS 'rollback info'; |
| COMMENT ON COLUMN public.undo_log.log_status IS '0:normal status,1:defense status'; |
| COMMENT ON COLUMN public.undo_log.log_created IS 'create datetime'; |
| COMMENT ON COLUMN public.undo_log.log_modified IS 'modify datetime'; |
| |
| CREATE SEQUENCE IF NOT EXISTS undo_log_id_seq INCREMENT BY 1 MINVALUE 1 ; |