blob: 40f98d2c2dcc161a03f1701e1b0f05be18a1a2f2 [file] [log] [blame]
/*
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.
*/
create sequence products_seq
start with 1
increment by 1
nomaxvalue;
create trigger products_trigger
before insert on products
for each row
begin
select products_seq.nextval into :new.product_id from dual;
end;
create sequence product_types_seq
start with 1
increment by 1
nomaxvalue;
create trigger product_types_trigger
before insert on product_types
for each row
begin
select product_types_seq.nextval into :new.product_type_id from dual;
end;
create sequence elements_seq
start with 1
increment by 1
nomaxvalue;
create trigger elements_trigger
before insert on elements
for each row
begin
select elements_seq.nextval into :new.element_id from dual;
end;
create sequence product_type_element_map_seq
start with 1
increment by 1
nomaxvalue;
create trigger ptype_element_map_trigger
before insert on product_type_element_map
for each row
begin
select product_type_element_map_seq.nextval into :new.product_type_element_map_id from dual;
end;
create sequence data_types_seq
start with 1
increment by 1
nomaxvalue;
create trigger data_types_trigger
before insert on data_types
for each row
begin
select data_types_seq.nextval into :new.data_type_id from dual;
end;