using System; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace IOL.BookmarkThing.Server.Migrations { public partial class GithubUserMappings : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "github_user_mappings", columns: table => new { id = table.Column(type: "uuid", nullable: false), user_id = table.Column(type: "uuid", nullable: true), github_id = table.Column(type: "text", nullable: true), created = table.Column(type: "timestamp with time zone", nullable: false) }, constraints: table => { table.PrimaryKey("pk_github_user_mappings", x => x.id); table.ForeignKey( name: "fk_github_user_mappings_users_user_id", column: x => x.user_id, principalTable: "users", principalColumn: "id"); }); migrationBuilder.CreateIndex( name: "ix_github_user_mappings_user_id", table: "github_user_mappings", column: "user_id"); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "github_user_mappings"); } } }