Giter Club home page Giter Club logo

backendarkade's Introduction

BackendArkade

Api .net Core Jwt

----------- Crea dataBase ------------

CREATE DATABASE [ARKADEDB] CONTAINMENT = NONE ON PRIMARY ( NAME = N'ARKADEDB', FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL15.MSSQLSERVER\MSSQL\DATA\ARKADEDB.mdf' , SIZE = 8192KB , MAXSIZE = UNLIMITED, FILEGROWTH = 65536KB ) LOG ON ( NAME = N'ARKADEDB_log', FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL15.MSSQLSERVER\MSSQL\DATA\ARKADEDB_log.ldf' , SIZE = 8192KB , MAXSIZE = 2048GB , FILEGROWTH = 65536KB ) WITH CATALOG_COLLATION = DATABASE_DEFAULT GO

USE [ARKADEDB] GO

CREATE TABLE [dbo].[CLIENTS]( ID int IDENTITY(1,1) NOT NULL, NAMES vchar(50) NOT NULL, PHONE_NUMBER vchar(50) NOT NULL, ADDRESS vchar(50) NOT NULL, GENDER vchar(50) NOT NULL, EMAIL vchar(50) NOT NULL, BIRTHDAY date NOT NULL, ASSOCIATE_ID int NOT NULL,) ON [PRIMARY]) GO

CREATE TABLE dbo.USERSINFO ( id int IDENTITY PRIMARY KEY, nickName varchar(30) NOT NULL, userIdentification varchar(30) NOT NULL, fullNames varchar(30) NOT NULL, typeAccount bit NOT NULL, active bit NOT NULL )

CREATE TABLE [dbo].[USERSLOGIN]( nickName varchar(30) NOT NULL, password varchar(30) NOT NULL, ) GO

INSERT INTO [dbo].[USERSINFO] ([nickName] ,[userIdentification] ,[fullNames] ,[typeAccount] ,[active]) VALUES (Admin ,1111111 ,AdminPrincipal> ,1 ,1 GO

INSERT INTO [dbo].[USERSLOGIN] ([nickName] ,[password]) VALUES (Admin ,Admin123) GO

----------- Configure la coneccion para conectar el programa a tu computador------

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.