DROP TABLE hibernate_sequences IF EXISTS; DROP TABLE UserAccount IF EXISTS; DROP TABLE SocialNetworkAccount IF EXISTS; DROP TABLE UserConnection IF EXISTS; DROP TABLE Researcher IF EXISTS; DROP TABLE Confirmation IF EXISTS; DROP TABLE Experiment IF EXISTS; DROP TABLE SocialNetworkConfiguration IF EXISTS; DROP TABLE Tag IF EXISTS; DROP TABLE UserAccount_authorities IF EXISTS; DROP TABLE Workspace IF EXISTS; DROP TABLE WorkspaceTags IF EXISTS ; CREATE TABLE hibernate_sequences ( sequence_name VARCHAR(255) DEFAULT NULL, next_val INTEGER DEFAULT NULL ); CREATE TABLE UserAccount ( id INTEGER IDENTITY PRIMARY KEY, version INTEGER NOT NULL, password VARCHAR(255) DEFAULT NULL, username VARCHAR(255) DEFAULT NULL, UNIQUE KEY username (username) ); CREATE TABLE SocialNetworkAccount ( id INTEGER IDENTITY PRIMARY KEY, version INTEGER NOT NULL, accessToken VARCHAR(255) DEFAULT NULL, createDate datetime DEFAULT NULL, displayName VARCHAR(255) DEFAULT NULL, expireTime BIGINT DEFAULT NULL, imageUrl VARCHAR(255) DEFAULT NULL, profileUrl VARCHAR(255) DEFAULT NULL, providerId VARCHAR(255) DEFAULT NULL, providerUserId VARCHAR(255) DEFAULT NULL, rank INTEGER NOT NULL, refreshToken VARCHAR(255) DEFAULT NULL, secret VARCHAR(255) DEFAULT NULL, userId VARCHAR(255) DEFAULT NULL, UNIQUE KEY userId (userId,providerId,rank), UNIQUE KEY userId_2 (userId,providerId,providerUserId) ); CREATE TABLE UserConnection ( userId VARCHAR(255) NOT NULL, providerId VARCHAR(255) NOT NULL, providerUserId VARCHAR(255) NOT NULL, rank INT NOT NULL, displayName VARCHAR(255), profileUrl VARCHAR(512), imageUrl VARCHAR(512), accessToken VARCHAR(512) NOT NULL, secret VARCHAR(512), refreshToken VARCHAR(512), expireTime BIGINT, UNIQUE KEY userConnection_ordered(userId,providerId,rank), PRIMARY KEY (userId,providerId,providerUserId) ); CREATE TABLE Researcher ( id INTEGER IDENTITY PRIMARY KEY, version INTEGER NOT NULL, address VARCHAR(255) DEFAULT NULL, email VARCHAR(255) DEFAULT NULL, name VARCHAR(255) DEFAULT NULL, phone VARCHAR(255) DEFAULT NULL, userAccount_id INTEGER DEFAULT NULL ); ALTER TABLE Researcher ADD CONSTRAINT IF NOT EXISTS fk_researcher_useraccount FOREIGN KEY (userAccount_id) REFERENCES UserAccount (id); CREATE TABLE Confirmation ( id INTEGER IDENTITY PRIMARY KEY, version INTEGER NOT NULL, confirmationCode VARCHAR(255) DEFAULT NULL, confirmationDate datetime DEFAULT NULL, registrationDate datetime DEFAULT NULL, researcher_id INTEGER NOT NULL ); ALTER TABLE Confirmation ADD CONSTRAINT IF NOT EXISTS fk_confirmation_resarcher FOREIGN KEY (researcher_id) REFERENCES Researcher (id); CREATE TABLE Experiment ( id INTEGER IDENTITY PRIMARY KEY, version INTEGER NOT NULL, description VARCHAR(255) DEFAULT NULL, experimentId VARCHAR(255) DEFAULT NULL, experimentName VARCHAR(255) DEFAULT NULL, publicExperiment tinyint(1) NOT NULL, owner_id INTEGER NOT NULL ); ALTER TABLE Experiment ADD CONSTRAINT IF NOT EXISTS fk_expeirment_researcher FOREIGN KEY (owner_id) REFERENCES Researcher (id); CREATE TABLE SocialNetworkConfiguration ( id INTEGER IDENTITY PRIMARY KEY, version INTEGER NOT NULL, notifyWhenExperimentExecutionFinished tinyint(1) NOT NULL, publishExistingExperimentMadePublic tinyint(1) NOT NULL, publishNewExperimentExecutionFinished tinyint(1) NOT NULL, publishNewPublicExperimentCreated tinyint(1) NOT NULL, publishNewPublicExperimentExecutionStarted tinyint(1) NOT NULL, service VARCHAR(255) DEFAULT NULL, actor_id INTEGER NOT NULL ); ALTER TABLE Experiment ADD CONSTRAINT IF NOT EXISTS fk_expeirment_researcher FOREIGN KEY (owner_id) REFERENCES Researcher (id); CREATE TABLE Tag ( id INTEGER IDENTITY PRIMARY KEY, version INTEGER NOT NULL, name VARCHAR(30) NOT NULL DEFAULT '' ); CREATE TABLE UserAccount_authorities ( UserAccount_id INTEGER NOT NULL, authority VARCHAR(255) DEFAULT NULL ); ALTER TABLE UserAccount_authorities ADD CONSTRAINT IF NOT EXISTS fk_authorities_useraccount FOREIGN KEY (UserAccount_id) REFERENCES UserAccount (id); CREATE TABLE Workspace ( id INTEGER IDENTITY PRIMARY KEY, version VARCHAR(20) NOT NULL, owner_id INTEGER NOT NULL, description VARCHAR(200) DEFAULT '""', downloads INTEGER DEFAULT '0', launches INTEGER DEFAULT '0', lastMod datetime DEFAULT NULL, name VARCHAR(100) NOT NULL DEFAULT '', origin_id INTEGER DEFAULT NULL, wsVersion INTEGER NOT NULL DEFAULT '0' ); ALTER TABLE Workspace ADD CONSTRAINT IF NOT EXISTS fk_workspace_origin FOREIGN KEY (origin_id) REFERENCES Workspace (id); ALTER TABLE Workspace ADD CONSTRAINT IF NOT EXISTS fk_workspace_owner FOREIGN KEY (owner_id) REFERENCES Researcher (id); CREATE TABLE WorkspaceTags ( id_ws INTEGER NOT NULL, id_tag INTEGER NOT NULL ); ALTER TABLE WorkspaceTags ADD CONSTRAINT IF NOT EXISTS fk_taggedWorkspaces FOREIGN KEY (id_ws) REFERENCES Workspace (id); ALTER TABLE WorkspaceTags ADD CONSTRAINT IF NOT EXISTS fk_workspaceTags FOREIGN KEY (id_tag) REFERENCES Tag (id); INSERT INTO hibernate_sequences (sequence_name, next_val) VALUES ('DomainEntity',10),('default',10); INSERT INTO UserAccount (id, version, password, username) VALUES (21,1,'084e0343a0486ff05530df6c705c8bb4','guest'), (22,1,'1d11608a12a5a8347ae8e3577a26e001','DemoMaster'), (23,1,'cfe0613e4ccf4e08bf75e712f8597f55','AutoTester'), (24,1,'1d11608a12a5a8347ae8e3577a26e001','admin'); INSERT INTO Researcher (id, version, address, email, name, phone, userAccount_id) VALUES (1,1,'unknown','iamaguest@us.es','Guest','000',21), (2,1,'unknown','demomaser@us.es','DemoMaster','000',22), (3,1,'unknown','autotester@us.es','AutoTester','000',23), (4,1,'unknown','admin@ideas.isa.us.es','Admin','000',24); INSERT INTO UserAccount_authorities (UserAccount_id, authority) VALUES (21,'RESEARCHER'), (22,'RESEARCHER'), (23,'RESEARCHER'), (24,'ADMIN');