Remove archive table and some settings.

Cleaned up DDL
This commit is contained in:
Lunastra 2021-12-15 15:15:28 -08:00
parent cd7f94a5e0
commit c403278f9f
2 changed files with 5 additions and 24 deletions

View File

@ -290,7 +290,11 @@ namespace TeamHobby.Archiving.xTests
[Fact] [Fact]
public void IsArchiveOnFirstOfMonth() public void IsArchiveOnFirstOfMonth()
{ {
// Arrange
// Act
//
} }

View File

@ -42,16 +42,12 @@ INSERT INTO hobby.roles (Role, CreatedBy, CreatedDate) VALUES
SET Global innodb_file_per_table=ON; SET Global innodb_file_per_table=ON;
-- SET GLOBAL innodb_file_format='Barracuda';
SET GLOBAL innodb_default_row_format='dynamic'; SET GLOBAL innodb_default_row_format='dynamic';
SET GLOBAL innodb_compression_algorithm='zlib'; SET GLOBAL innodb_compression_algorithm='zlib';
-- Check for system settings
SHOW VARIABLES LIKE 'innodb_compression_algorithm';
SHOW VARIABLES LIKE 'innodb_default_row_format';
SHOW VARIABLES LIKE '%innodb%';
CREATE TABLE Persons ( CREATE TABLE Persons (
PersonID int, PersonID int,
@ -97,23 +93,6 @@ create table Log
); );
create table Archive
(
LtimeStamp datetime null,
logID int not null,
LvName varchar(50) not null,
catName varchar(50) not null,
userOP varchar(50) not null,
logMessage varchar(255) not null,
constraint Archive_pk primary key (logID)
)
ENGINE=InnoDB
PAGE_COMPRESSED=1
PAGE_COMPRESSION_LEVEL=9;
drop table archive;
-- Dummy data for testing purposes -- Dummy data for testing purposes
-- Log categories data -- Log categories data
INSERT into logcategories(catName, catComment) values INSERT into logcategories(catName, catComment) values
@ -137,8 +116,6 @@ INSERT into log(lvname, catname, userop, logmessage) values
('Info', 'Business', 'log in', 'log in successfully'), ('Info', 'Business', 'log in', 'log in successfully'),
('Info', 'View', 'search for projects', 'result return'); ('Info', 'View', 'search for projects', 'result return');
select * from logcategories;
select * from log;