All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
- Created Dockerfile for packing up API and Web projects as Docker image
25 lines
656 B
C#
25 lines
656 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace YABA.Data.Migrations
|
|
{
|
|
public partial class AddedUrlToBookmark : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<string>(
|
|
name: "url",
|
|
table: "bookmarks",
|
|
type: "text",
|
|
nullable: false,
|
|
defaultValue: "");
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "url",
|
|
table: "bookmarks");
|
|
}
|
|
}
|
|
}
|