This file has been truncated, but you can view the full file.
This file contains 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 DATABASE CodeScoutsDB | |
GO | |
USE CodeScoutsDB | |
GO | |
CREATE TABLE "Album" | |
( | |
"AlbumId" INT NOT NULL, | |
"Title" VARCHAR(160) NOT NULL, |
This file contains 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 Articulos ( | |
[ID] INT IDENTITY (1, 1) NOT NULL, | |
[CodigoBarras] NVARCHAR (100) NOT NULL, | |
[Descripcion] NVARCHAR (400) NOT NULL, | |
[PrecioCosto] DECIMAL (18, 2) NOT NULL, | |
[PrecioVenta] DECIMAL (18, 2) NOT NULL, | |
[StockDisponible] INT NOT NULL, | |
[FechaAlta] DATETIME NOT NULL, | |
CONSTRAINT [PK_Articulos] PRIMARY KEY CLUSTERED ([ID] ASC) | |
); |
This file contains 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
HASH=$(git commit-tree HEAD^{tree} -m "🚀 First commit") | |
git reset $HASH | |
echo "🚀 First commit has been cleared" |
This file contains 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
HASH=$(git commit-tree HEAD^{tree} -m "🚀 First commit") | |
git reset $HASH | |
echo "🚀 First commit has been cleared" | |
sleep 0.2 | |
echo "Pushing to the current branch" |