mirror of
https://github.com/corda/corda.git
synced 2025-02-04 18:22:29 +00:00
ENT-1144 - rename "link_nodeinfo_party" table to "node_link_nodeinfo_… (#135)
* ENT-1144 - rename "link_nodeinfo_party" table to "node_link_nodeinfo_party"
This commit is contained in:
parent
e922741b00
commit
f264b62823
@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
create table link_nodeinfo_party (
|
create table node_link_nodeinfo_party (
|
||||||
node_info_id int4 not null,
|
node_info_id int4 not null,
|
||||||
party_name varchar(255) not null
|
party_name varchar(255) not null
|
||||||
);
|
);
|
||||||
@ -208,13 +208,13 @@ create index transaction_id_index on vault_transaction_notes (transaction_id);
|
|||||||
create sequence hibernate_sequence start 1 increment 1;
|
create sequence hibernate_sequence start 1 increment 1;
|
||||||
|
|
||||||
|
|
||||||
alter table link_nodeinfo_party
|
alter table node_link_nodeinfo_party
|
||||||
add constraint FK1ua3h6nwwfji0mn23c5d1xx8e
|
add constraint FK1ua3h6nwwfji0mn23c5d1xx8e
|
||||||
foreign key (party_name)
|
foreign key (party_name)
|
||||||
references node_info_party_cert;
|
references node_info_party_cert;
|
||||||
|
|
||||||
|
|
||||||
alter table link_nodeinfo_party
|
alter table node_link_nodeinfo_party
|
||||||
add constraint FK544l9wsec35ph7hxrtwfd2lws
|
add constraint FK544l9wsec35ph7hxrtwfd2lws
|
||||||
foreign key (node_info_id)
|
foreign key (node_info_id)
|
||||||
references node_infos;
|
references node_infos;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
create table link_nodeinfo_party (
|
create table node_link_nodeinfo_party (
|
||||||
node_info_id int not null,
|
node_info_id int not null,
|
||||||
party_name varchar(255) not null
|
party_name varchar(255) not null
|
||||||
);
|
);
|
||||||
@ -206,13 +206,13 @@ create index transaction_id_index on vault_transaction_notes (transaction_id);
|
|||||||
create sequence hibernate_sequence start with 1 increment by 1;
|
create sequence hibernate_sequence start with 1 increment by 1;
|
||||||
|
|
||||||
|
|
||||||
alter table link_nodeinfo_party
|
alter table node_link_nodeinfo_party
|
||||||
add constraint FK1ua3h6nwwfji0mn23c5d1xx8e
|
add constraint FK1ua3h6nwwfji0mn23c5d1xx8e
|
||||||
foreign key (party_name)
|
foreign key (party_name)
|
||||||
references node_info_party_cert;
|
references node_info_party_cert;
|
||||||
|
|
||||||
|
|
||||||
alter table link_nodeinfo_party
|
alter table node_link_nodeinfo_party
|
||||||
add constraint FK544l9wsec35ph7hxrtwfd2lws
|
add constraint FK544l9wsec35ph7hxrtwfd2lws
|
||||||
foreign key (node_info_id)
|
foreign key (node_info_id)
|
||||||
references node_infos;
|
references node_infos;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user