Malshare / MalShare

http://www.malshare.com
22 stars 4 forks source link

Changes: 20190927 #41

Closed silascutler closed 4 years ago

silascutler commented 4 years ago

Making some changes to the database at the moment to support a couple new features we are adding:

ALTER TABLE `tbl_sample_sources` ADD COLUMN `sample_partner_submission` int(11) NULL DEFAULT NULL;
ALTER TABLE `tbl_sample_sources` ADD FOREIGN KEY (sample_partner_submission) REFERENCES tbl_sample_partners(id);

CREATE TABLE `tbl_sample_partners` (
  `id` int(11) NOT NULL AUTO_INCREMENT PRIMARY KEY,
  `display_name` VARCHAR(50) NOT NULL DEFAULT "Sample Feed Partner",
  `private_name` VARCHAR(50),
  `created_at` TIMESTAMP NOT NULL DEFAULT NOW()
);
silascutler commented 4 years ago

Updates pushed and database changes made

image