Created
January 10, 2023 03:05
-
-
Save AngelCruzL/3788e8f5b4542f1041eb442acfd943f8 to your computer and use it in GitHub Desktop.
Creacion de usuarios
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE UsuariosSicah ( | |
ID INT PRIMARY KEY IDENTITY, | |
CORREO VARCHAR(60) UNIQUE, | |
CONTRASENA CHAR(60) DEFAULT '$2y$10$Pjr8/W5acqok1MsaPcusR.cNQu9yDU/pWYXBjgsdP3H1XjGi8X7pa', | |
NOMBRE VARCHAR(60), | |
ESTATUS BIT DEFAULT 1, | |
TIPO_USUARIO TINYINT DEFAULT 1, | |
RESET BIT DEFAULT 1 | |
); | |
INSERT INTO UsuariosSicah (CORREO, NOMBRE) | |
VALUES ('[email protected]', 'LUIS LARA'); | |
INSERT INTO UsuariosSicah (CORREO, NOMBRE, RESET) | |
VALUES ('[email protected]', 'Angel Cruz', 0); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment