blob: f16d3522a7c239d32c2e32a81db495b5393b2852 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Timeline.Migrations
{
public partial class AddDeletedToToken : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<bool>(
name: "deleted",
table: "user_token",
type: "INTEGER",
nullable: false,
defaultValue: false);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "deleted",
table: "user_token");
}
}
}
|