-- 7a98f013-95aa-11f1-83c3-e8d8d1a2cb0a
INSERT INTO Security_Role
(
    Id,
    Name,
    Status,
    CreatedDate,
    IsFixed,
    IsDeleted,
    IsActive
)
VALUES
(
    UUID(),
    'USER',
    1,
    UTC_TIMESTAMP(),
    0,
    0,
    1
);

INSERT INTO `Department`
(
    `Id`,
    `Name`,
    `CreatedDate`,
    `IsDeleted`,
    `IsActive`
)
VALUES
(UUID(), 'Computer', UTC_TIMESTAMP(), 0, 1),
(UUID(), 'Mechanical', UTC_TIMESTAMP(), 0, 1),
(UUID(), 'Civil', UTC_TIMESTAMP(), 0, 1),
(UUID(), 'Electrical', UTC_TIMESTAMP(), 0, 1),
(UUID(), 'Electronics', UTC_TIMESTAMP(), 0, 1),
(UUID(), 'Architecture', UTC_TIMESTAMP(), 0, 1);