mirror of
https://github.com/corda/corda.git
synced 2025-06-21 16:49:45 +00:00
Add sqlserver ddl scripts (#126)
sqlserver ddl for corda core and cordapps
This commit is contained in:
@ -0,0 +1,32 @@
|
|||||||
|
create table contract_cash_states (
|
||||||
|
output_index int not null,
|
||||||
|
transaction_id varchar(64) not null,
|
||||||
|
ccy_code varchar(3),
|
||||||
|
issuer_key_hash varchar(130),
|
||||||
|
issuer_ref varbinary(512),
|
||||||
|
owner_name varchar(255),
|
||||||
|
pennies bigint,
|
||||||
|
primary key (output_index, transaction_id)
|
||||||
|
);
|
||||||
|
|
||||||
|
create index ccy_code_idx on contract_cash_states (ccy_code);
|
||||||
|
create index pennies_idx on contract_cash_states (pennies);
|
||||||
|
|
||||||
|
|
||||||
|
create table cp_states (
|
||||||
|
output_index int not null,
|
||||||
|
transaction_id varchar(64) not null,
|
||||||
|
ccy_code varchar(3),
|
||||||
|
face_value bigint,
|
||||||
|
face_value_issuer_key_hash varchar(130),
|
||||||
|
face_value_issuer_ref varbinary(512),
|
||||||
|
issuance_key_hash varchar(130),
|
||||||
|
issuance_ref varbinary(255),
|
||||||
|
maturity_instant datetime2,
|
||||||
|
owner_key_hash varchar(130),
|
||||||
|
primary key (output_index, transaction_id)
|
||||||
|
);
|
||||||
|
|
||||||
|
create index ccy_code_index on cp_states (ccy_code);
|
||||||
|
create index maturity_index on cp_states (maturity_instant);
|
||||||
|
create index face_value_index on cp_states (face_value);
|
235
node/src/main/resources/database/sqlserver/scripts/create-db.sql
Normal file
235
node/src/main/resources/database/sqlserver/scripts/create-db.sql
Normal file
@ -0,0 +1,235 @@
|
|||||||
|
create table link_nodeinfo_party (
|
||||||
|
node_info_id int not null,
|
||||||
|
party_name varchar(255) not null
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
create table node_attachments (
|
||||||
|
att_id varchar(255) not null,
|
||||||
|
content varbinary(MAX),
|
||||||
|
filename varchar(255),
|
||||||
|
insertion_date datetime2 not null,
|
||||||
|
uploader varchar(255),
|
||||||
|
primary key (att_id)
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
create table node_bft_committed_states (
|
||||||
|
output_index int not null,
|
||||||
|
transaction_id varchar(64) not null,
|
||||||
|
consuming_input_index int,
|
||||||
|
consuming_transaction_id varchar(255),
|
||||||
|
requesting_party_name varchar(255),
|
||||||
|
requesting_party_key varbinary(255),
|
||||||
|
primary key (output_index, transaction_id)
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
create table node_checkpoints (
|
||||||
|
checkpoint_id varchar(64) not null,
|
||||||
|
checkpoint_value varbinary(MAX),
|
||||||
|
primary key (checkpoint_id)
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
create table node_contract_upgrades (
|
||||||
|
state_ref varchar(96) not null,
|
||||||
|
contract_class_name varchar(255),
|
||||||
|
primary key (state_ref)
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
create table node_identities (
|
||||||
|
pk_hash varchar(130) not null,
|
||||||
|
identity_value varbinary(MAX),
|
||||||
|
primary key (pk_hash)
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
create table node_info_hosts (
|
||||||
|
host varchar(255) not null,
|
||||||
|
port int not null,
|
||||||
|
node_info_id int,
|
||||||
|
primary key (host, port)
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
create table node_info_party_cert (
|
||||||
|
party_name varchar(255) not null,
|
||||||
|
isMain bit not null,
|
||||||
|
owning_key_hash varchar(130),
|
||||||
|
party_cert_binary varbinary(MAX),
|
||||||
|
primary key (party_name)
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
create table node_infos (
|
||||||
|
node_info_id int not null,
|
||||||
|
node_info_hash varchar(64),
|
||||||
|
platform_version int,
|
||||||
|
serial bigint,
|
||||||
|
primary key (node_info_id)
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
create table node_message_ids (
|
||||||
|
message_id varchar(36) not null,
|
||||||
|
insertion_time datetime2,
|
||||||
|
primary key (message_id)
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
create table node_message_retry (
|
||||||
|
message_id bigint not null,
|
||||||
|
message varbinary(MAX),
|
||||||
|
recipients varbinary(MAX),
|
||||||
|
primary key (message_id)
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
create table node_named_identities (
|
||||||
|
name varchar(128) not null,
|
||||||
|
pk_hash varchar(130),
|
||||||
|
primary key (name)
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
create table node_notary_commit_log (
|
||||||
|
output_index int not null,
|
||||||
|
transaction_id varchar(64) not null,
|
||||||
|
consuming_input_index int,
|
||||||
|
consuming_transaction_id varchar(255),
|
||||||
|
requesting_party_name varchar(255),
|
||||||
|
requesting_party_key varbinary(255),
|
||||||
|
primary key (output_index, transaction_id)
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
create table node_our_key_pairs (
|
||||||
|
public_key_hash varchar(130) not null,
|
||||||
|
private_key varbinary(MAX),
|
||||||
|
public_key varbinary(MAX),
|
||||||
|
primary key (public_key_hash)
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
create table node_raft_committed_states (
|
||||||
|
id varchar(255) not null,
|
||||||
|
state_index bigint,
|
||||||
|
state_value varbinary(MAX),
|
||||||
|
primary key (id)
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
create table node_scheduled_states (
|
||||||
|
output_index int not null,
|
||||||
|
transaction_id varchar(64) not null,
|
||||||
|
scheduled_at datetime2 not null,
|
||||||
|
primary key (output_index, transaction_id)
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
create table node_transaction_mappings (
|
||||||
|
tx_id varchar(64) not null,
|
||||||
|
state_machine_run_id varchar(36),
|
||||||
|
primary key (tx_id)
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
create table node_transactions (
|
||||||
|
tx_id varchar(64) not null,
|
||||||
|
transaction_value varbinary(MAX),
|
||||||
|
primary key (tx_id)
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
create table vault_fungible_states (
|
||||||
|
output_index int not null,
|
||||||
|
transaction_id varchar(64) not null,
|
||||||
|
issuer_name varchar(255),
|
||||||
|
issuer_ref varbinary(512),
|
||||||
|
owner_name varchar(255),
|
||||||
|
quantity bigint,
|
||||||
|
primary key (output_index, transaction_id)
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
create table vault_fungible_states_parts (
|
||||||
|
output_index int not null,
|
||||||
|
transaction_id varchar(64) not null,
|
||||||
|
participants varchar(255)
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
create table vault_linear_states (
|
||||||
|
output_index int not null,
|
||||||
|
transaction_id varchar(64) not null,
|
||||||
|
external_id varchar(255),
|
||||||
|
uuid binary(255) not null,
|
||||||
|
primary key (output_index, transaction_id)
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
create table vault_linear_states_parts (
|
||||||
|
output_index int not null,
|
||||||
|
transaction_id varchar(64) not null,
|
||||||
|
participants varchar(255)
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
create table vault_states (
|
||||||
|
output_index int not null,
|
||||||
|
transaction_id varchar(64) not null,
|
||||||
|
consumed_timestamp datetime2,
|
||||||
|
contract_state_class_name varchar(255),
|
||||||
|
lock_id varchar(255),
|
||||||
|
lock_timestamp datetime2,
|
||||||
|
notary_name varchar(255),
|
||||||
|
recorded_timestamp datetime2,
|
||||||
|
state_status int,
|
||||||
|
primary key (output_index, transaction_id)
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
create table vault_transaction_notes (
|
||||||
|
seq_no int not null,
|
||||||
|
note varchar(255),
|
||||||
|
transaction_id varchar(64),
|
||||||
|
primary key (seq_no)
|
||||||
|
);
|
||||||
|
create index att_id_idx on node_attachments (att_id);
|
||||||
|
create index external_id_index on vault_linear_states (external_id);
|
||||||
|
create index uuid_index on vault_linear_states (uuid);
|
||||||
|
create index state_status_idx on vault_states (state_status);
|
||||||
|
create index transaction_id_index on vault_transaction_notes (transaction_id);
|
||||||
|
create sequence hibernate_sequence start with 1 increment by 1;
|
||||||
|
|
||||||
|
|
||||||
|
alter table link_nodeinfo_party
|
||||||
|
add constraint FK1ua3h6nwwfji0mn23c5d1xx8e
|
||||||
|
foreign key (party_name)
|
||||||
|
references node_info_party_cert;
|
||||||
|
|
||||||
|
|
||||||
|
alter table link_nodeinfo_party
|
||||||
|
add constraint FK544l9wsec35ph7hxrtwfd2lws
|
||||||
|
foreign key (node_info_id)
|
||||||
|
references node_infos;
|
||||||
|
|
||||||
|
|
||||||
|
alter table node_info_hosts
|
||||||
|
add constraint FK5ie46htdrkftmwe6rpwrnp0mp
|
||||||
|
foreign key (node_info_id)
|
||||||
|
references node_infos;
|
||||||
|
|
||||||
|
|
||||||
|
alter table vault_fungible_states_parts
|
||||||
|
add constraint FKchmfeq1ldqnoq9idv9ogxauqm
|
||||||
|
foreign key (output_index, transaction_id)
|
||||||
|
references vault_fungible_states;
|
||||||
|
|
||||||
|
|
||||||
|
alter table vault_linear_states_parts
|
||||||
|
add constraint FKhafsv733d0bo9j1tg352koq3y
|
||||||
|
foreign key (output_index, transaction_id)
|
||||||
|
references vault_linear_states;
|
Reference in New Issue
Block a user