From 88110f536f9c3843ecf5016122e101f8a424af77 Mon Sep 17 00:00:00 2001 From: ivarlovlie Date: Sat, 22 Jan 2022 22:43:38 +0100 Subject: Initial commit --- src/server/Migrations/20211217163105_Entries.cs | 33 +++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 src/server/Migrations/20211217163105_Entries.cs (limited to 'src/server/Migrations/20211217163105_Entries.cs') diff --git a/src/server/Migrations/20211217163105_Entries.cs b/src/server/Migrations/20211217163105_Entries.cs new file mode 100644 index 0000000..e8acecf --- /dev/null +++ b/src/server/Migrations/20211217163105_Entries.cs @@ -0,0 +1,33 @@ +using System; +using Microsoft.EntityFrameworkCore.Migrations; + +namespace IOL.BookmarkThing.Server.Migrations +{ + public partial class Entries : Migration + { + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.CreateTable( + name: "entries", + columns: table => new + { + id = table.Column(type: "uuid", nullable: false), + user_id = table.Column(type: "uuid", nullable: false), + url = table.Column(type: "text", nullable: true), + description = table.Column(type: "text", nullable: true), + tags = table.Column(type: "text", nullable: true), + created = table.Column(type: "timestamp without time zone", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("pk_entries", x => x.id); + }); + } + + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropTable( + name: "entries"); + } + } +} -- cgit v1.3