script/client/at/db/oracle.sql (23 lines of code) (raw):

-- -- 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 undo_log ( id NUMBER(19) NOT NULL, branch_id NUMBER(19) NOT NULL, xid VARCHAR2(128) NOT NULL, context VARCHAR2(128) NOT NULL, rollback_info BLOB NOT NULL, log_status NUMBER(10) NOT NULL, log_created TIMESTAMP(0) NOT NULL, log_modified TIMESTAMP(0) NOT NULL, PRIMARY KEY (id), CONSTRAINT ux_undo_log UNIQUE (xid, branch_id) ); CREATE INDEX ix_log_created ON undo_log(log_created); COMMENT ON TABLE undo_log IS 'AT transaction mode undo table'; COMMENT ON COLUMN undo_log.branch_id is 'branch transaction id'; COMMENT ON COLUMN undo_log.xid is 'global transaction id'; COMMENT ON COLUMN undo_log.context is 'undo_log context,such as serialization'; COMMENT ON COLUMN undo_log.rollback_info is 'rollback info'; COMMENT ON COLUMN undo_log.log_status is '0:normal status,1:defense status'; COMMENT ON COLUMN undo_log.log_created is 'create datetime'; COMMENT ON COLUMN undo_log.log_modified is 'modify datetime'; -- Generate ID using sequence and trigger CREATE SEQUENCE UNDO_LOG_SEQ START WITH 1 INCREMENT BY 1;