mirror of
https://github.com/bitwarden/server.git
synced 2024-11-22 12:15:36 +01:00
13ad872f51
* Resolve Vault Warnings * Resolve DB Warnings
1087 lines
51 KiB
C#
1087 lines
51 KiB
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace Bit.SqliteMigrations.Migrations;
|
|
|
|
#pragma warning disable CS8981 // We unfortunately can't rename migrations
|
|
public partial class initial : Migration
|
|
#pragma warning restore CS8981
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.CreateTable(
|
|
name: "Event",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "TEXT", nullable: false),
|
|
Date = table.Column<DateTime>(type: "TEXT", nullable: false),
|
|
Type = table.Column<int>(type: "INTEGER", nullable: false),
|
|
UserId = table.Column<Guid>(type: "TEXT", nullable: true),
|
|
OrganizationId = table.Column<Guid>(type: "TEXT", nullable: true),
|
|
InstallationId = table.Column<Guid>(type: "TEXT", nullable: true),
|
|
ProviderId = table.Column<Guid>(type: "TEXT", nullable: true),
|
|
CipherId = table.Column<Guid>(type: "TEXT", nullable: true),
|
|
CollectionId = table.Column<Guid>(type: "TEXT", nullable: true),
|
|
PolicyId = table.Column<Guid>(type: "TEXT", nullable: true),
|
|
GroupId = table.Column<Guid>(type: "TEXT", nullable: true),
|
|
OrganizationUserId = table.Column<Guid>(type: "TEXT", nullable: true),
|
|
ProviderUserId = table.Column<Guid>(type: "TEXT", nullable: true),
|
|
ProviderOrganizationId = table.Column<Guid>(type: "TEXT", nullable: true),
|
|
DeviceType = table.Column<byte>(type: "INTEGER", nullable: true),
|
|
IpAddress = table.Column<string>(type: "TEXT", maxLength: 50, nullable: true),
|
|
ActingUserId = table.Column<Guid>(type: "TEXT", nullable: true),
|
|
SystemUser = table.Column<byte>(type: "INTEGER", nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Event", x => x.Id);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "Grant",
|
|
columns: table => new
|
|
{
|
|
Key = table.Column<string>(type: "TEXT", maxLength: 200, nullable: false),
|
|
Type = table.Column<string>(type: "TEXT", maxLength: 50, nullable: true),
|
|
SubjectId = table.Column<string>(type: "TEXT", maxLength: 200, nullable: true),
|
|
SessionId = table.Column<string>(type: "TEXT", maxLength: 100, nullable: true),
|
|
ClientId = table.Column<string>(type: "TEXT", maxLength: 200, nullable: true),
|
|
Description = table.Column<string>(type: "TEXT", maxLength: 200, nullable: true),
|
|
CreationDate = table.Column<DateTime>(type: "TEXT", nullable: false),
|
|
ExpirationDate = table.Column<DateTime>(type: "TEXT", nullable: true),
|
|
ConsumedDate = table.Column<DateTime>(type: "TEXT", nullable: true),
|
|
Data = table.Column<string>(type: "TEXT", nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Grant", x => x.Key);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "Installation",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "TEXT", nullable: false),
|
|
Email = table.Column<string>(type: "TEXT", maxLength: 256, nullable: true),
|
|
Key = table.Column<string>(type: "TEXT", maxLength: 150, nullable: true),
|
|
Enabled = table.Column<bool>(type: "INTEGER", nullable: false),
|
|
CreationDate = table.Column<DateTime>(type: "TEXT", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Installation", x => x.Id);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "Organization",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "TEXT", nullable: false),
|
|
Identifier = table.Column<string>(type: "TEXT", maxLength: 50, nullable: true),
|
|
Name = table.Column<string>(type: "TEXT", maxLength: 50, nullable: true),
|
|
BusinessName = table.Column<string>(type: "TEXT", maxLength: 50, nullable: true),
|
|
BusinessAddress1 = table.Column<string>(type: "TEXT", maxLength: 50, nullable: true),
|
|
BusinessAddress2 = table.Column<string>(type: "TEXT", maxLength: 50, nullable: true),
|
|
BusinessAddress3 = table.Column<string>(type: "TEXT", maxLength: 50, nullable: true),
|
|
BusinessCountry = table.Column<string>(type: "TEXT", maxLength: 2, nullable: true),
|
|
BusinessTaxNumber = table.Column<string>(type: "TEXT", maxLength: 30, nullable: true),
|
|
BillingEmail = table.Column<string>(type: "TEXT", maxLength: 256, nullable: true),
|
|
Plan = table.Column<string>(type: "TEXT", maxLength: 50, nullable: true),
|
|
PlanType = table.Column<byte>(type: "INTEGER", nullable: false),
|
|
Seats = table.Column<int>(type: "INTEGER", nullable: true),
|
|
MaxCollections = table.Column<short>(type: "INTEGER", nullable: true),
|
|
UsePolicies = table.Column<bool>(type: "INTEGER", nullable: false),
|
|
UseSso = table.Column<bool>(type: "INTEGER", nullable: false),
|
|
UseKeyConnector = table.Column<bool>(type: "INTEGER", nullable: false),
|
|
UseScim = table.Column<bool>(type: "INTEGER", nullable: false),
|
|
UseGroups = table.Column<bool>(type: "INTEGER", nullable: false),
|
|
UseDirectory = table.Column<bool>(type: "INTEGER", nullable: false),
|
|
UseEvents = table.Column<bool>(type: "INTEGER", nullable: false),
|
|
UseTotp = table.Column<bool>(type: "INTEGER", nullable: false),
|
|
Use2fa = table.Column<bool>(type: "INTEGER", nullable: false),
|
|
UseApi = table.Column<bool>(type: "INTEGER", nullable: false),
|
|
UseResetPassword = table.Column<bool>(type: "INTEGER", nullable: false),
|
|
SelfHost = table.Column<bool>(type: "INTEGER", nullable: false),
|
|
UsersGetPremium = table.Column<bool>(type: "INTEGER", nullable: false),
|
|
UseCustomPermissions = table.Column<bool>(type: "INTEGER", nullable: false),
|
|
Storage = table.Column<long>(type: "INTEGER", nullable: true),
|
|
MaxStorageGb = table.Column<short>(type: "INTEGER", nullable: true),
|
|
Gateway = table.Column<byte>(type: "INTEGER", nullable: true),
|
|
GatewayCustomerId = table.Column<string>(type: "TEXT", maxLength: 50, nullable: true),
|
|
GatewaySubscriptionId = table.Column<string>(type: "TEXT", maxLength: 50, nullable: true),
|
|
ReferenceData = table.Column<string>(type: "TEXT", nullable: true),
|
|
Enabled = table.Column<bool>(type: "INTEGER", nullable: false),
|
|
LicenseKey = table.Column<string>(type: "TEXT", maxLength: 100, nullable: true),
|
|
PublicKey = table.Column<string>(type: "TEXT", nullable: true),
|
|
PrivateKey = table.Column<string>(type: "TEXT", nullable: true),
|
|
TwoFactorProviders = table.Column<string>(type: "TEXT", nullable: true),
|
|
ExpirationDate = table.Column<DateTime>(type: "TEXT", nullable: true),
|
|
CreationDate = table.Column<DateTime>(type: "TEXT", nullable: false),
|
|
RevisionDate = table.Column<DateTime>(type: "TEXT", nullable: false),
|
|
MaxAutoscaleSeats = table.Column<int>(type: "INTEGER", nullable: true),
|
|
OwnersNotifiedOfAutoscaling = table.Column<DateTime>(type: "TEXT", nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Organization", x => x.Id);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "Provider",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "TEXT", nullable: false),
|
|
Name = table.Column<string>(type: "TEXT", nullable: true),
|
|
BusinessName = table.Column<string>(type: "TEXT", nullable: true),
|
|
BusinessAddress1 = table.Column<string>(type: "TEXT", nullable: true),
|
|
BusinessAddress2 = table.Column<string>(type: "TEXT", nullable: true),
|
|
BusinessAddress3 = table.Column<string>(type: "TEXT", nullable: true),
|
|
BusinessCountry = table.Column<string>(type: "TEXT", nullable: true),
|
|
BusinessTaxNumber = table.Column<string>(type: "TEXT", nullable: true),
|
|
BillingEmail = table.Column<string>(type: "TEXT", nullable: true),
|
|
Status = table.Column<byte>(type: "INTEGER", nullable: false),
|
|
UseEvents = table.Column<bool>(type: "INTEGER", nullable: false),
|
|
Enabled = table.Column<bool>(type: "INTEGER", nullable: false),
|
|
CreationDate = table.Column<DateTime>(type: "TEXT", nullable: false),
|
|
RevisionDate = table.Column<DateTime>(type: "TEXT", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Provider", x => x.Id);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "TaxRate",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<string>(type: "TEXT", maxLength: 40, nullable: false),
|
|
Country = table.Column<string>(type: "TEXT", maxLength: 50, nullable: true),
|
|
State = table.Column<string>(type: "TEXT", maxLength: 2, nullable: true),
|
|
PostalCode = table.Column<string>(type: "TEXT", maxLength: 10, nullable: true),
|
|
Rate = table.Column<decimal>(type: "TEXT", nullable: false),
|
|
Active = table.Column<bool>(type: "INTEGER", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_TaxRate", x => x.Id);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "User",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "TEXT", nullable: false),
|
|
Name = table.Column<string>(type: "TEXT", maxLength: 50, nullable: true),
|
|
Email = table.Column<string>(type: "TEXT", maxLength: 256, nullable: false),
|
|
EmailVerified = table.Column<bool>(type: "INTEGER", nullable: false),
|
|
MasterPassword = table.Column<string>(type: "TEXT", maxLength: 300, nullable: true),
|
|
MasterPasswordHint = table.Column<string>(type: "TEXT", maxLength: 50, nullable: true),
|
|
Culture = table.Column<string>(type: "TEXT", maxLength: 10, nullable: true),
|
|
SecurityStamp = table.Column<string>(type: "TEXT", maxLength: 50, nullable: false),
|
|
TwoFactorProviders = table.Column<string>(type: "TEXT", nullable: true),
|
|
TwoFactorRecoveryCode = table.Column<string>(type: "TEXT", maxLength: 32, nullable: true),
|
|
EquivalentDomains = table.Column<string>(type: "TEXT", nullable: true),
|
|
ExcludedGlobalEquivalentDomains = table.Column<string>(type: "TEXT", nullable: true),
|
|
AccountRevisionDate = table.Column<DateTime>(type: "TEXT", nullable: false),
|
|
Key = table.Column<string>(type: "TEXT", nullable: true),
|
|
PublicKey = table.Column<string>(type: "TEXT", nullable: true),
|
|
PrivateKey = table.Column<string>(type: "TEXT", nullable: true),
|
|
Premium = table.Column<bool>(type: "INTEGER", nullable: false),
|
|
PremiumExpirationDate = table.Column<DateTime>(type: "TEXT", nullable: true),
|
|
RenewalReminderDate = table.Column<DateTime>(type: "TEXT", nullable: true),
|
|
Storage = table.Column<long>(type: "INTEGER", nullable: true),
|
|
MaxStorageGb = table.Column<short>(type: "INTEGER", nullable: true),
|
|
Gateway = table.Column<byte>(type: "INTEGER", nullable: true),
|
|
GatewayCustomerId = table.Column<string>(type: "TEXT", maxLength: 50, nullable: true),
|
|
GatewaySubscriptionId = table.Column<string>(type: "TEXT", maxLength: 50, nullable: true),
|
|
ReferenceData = table.Column<string>(type: "TEXT", nullable: true),
|
|
LicenseKey = table.Column<string>(type: "TEXT", maxLength: 100, nullable: true),
|
|
ApiKey = table.Column<string>(type: "TEXT", maxLength: 30, nullable: false),
|
|
Kdf = table.Column<byte>(type: "INTEGER", nullable: false),
|
|
KdfIterations = table.Column<int>(type: "INTEGER", nullable: false),
|
|
CreationDate = table.Column<DateTime>(type: "TEXT", nullable: false),
|
|
RevisionDate = table.Column<DateTime>(type: "TEXT", nullable: false),
|
|
ForcePasswordReset = table.Column<bool>(type: "INTEGER", nullable: false),
|
|
UsesKeyConnector = table.Column<bool>(type: "INTEGER", nullable: false),
|
|
FailedLoginCount = table.Column<int>(type: "INTEGER", nullable: false),
|
|
LastFailedLoginDate = table.Column<DateTime>(type: "TEXT", nullable: true),
|
|
UnknownDeviceVerificationEnabled = table.Column<bool>(type: "INTEGER", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_User", x => x.Id);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "Collection",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "TEXT", nullable: false),
|
|
OrganizationId = table.Column<Guid>(type: "TEXT", nullable: false),
|
|
Name = table.Column<string>(type: "TEXT", nullable: true),
|
|
ExternalId = table.Column<string>(type: "TEXT", maxLength: 300, nullable: true),
|
|
CreationDate = table.Column<DateTime>(type: "TEXT", nullable: false),
|
|
RevisionDate = table.Column<DateTime>(type: "TEXT", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Collection", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_Collection_Organization_OrganizationId",
|
|
column: x => x.OrganizationId,
|
|
principalTable: "Organization",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "Group",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "TEXT", nullable: false),
|
|
OrganizationId = table.Column<Guid>(type: "TEXT", nullable: false),
|
|
Name = table.Column<string>(type: "TEXT", maxLength: 100, nullable: true),
|
|
AccessAll = table.Column<bool>(type: "INTEGER", nullable: false),
|
|
ExternalId = table.Column<string>(type: "TEXT", maxLength: 300, nullable: true),
|
|
CreationDate = table.Column<DateTime>(type: "TEXT", nullable: false),
|
|
RevisionDate = table.Column<DateTime>(type: "TEXT", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Group", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_Group_Organization_OrganizationId",
|
|
column: x => x.OrganizationId,
|
|
principalTable: "Organization",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "OrganizationApiKey",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "TEXT", nullable: false),
|
|
OrganizationId = table.Column<Guid>(type: "TEXT", nullable: false),
|
|
Type = table.Column<byte>(type: "INTEGER", nullable: false),
|
|
ApiKey = table.Column<string>(type: "TEXT", maxLength: 30, nullable: true),
|
|
RevisionDate = table.Column<DateTime>(type: "TEXT", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_OrganizationApiKey", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_OrganizationApiKey_Organization_OrganizationId",
|
|
column: x => x.OrganizationId,
|
|
principalTable: "Organization",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "OrganizationConnection",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "TEXT", nullable: false),
|
|
Type = table.Column<byte>(type: "INTEGER", nullable: false),
|
|
OrganizationId = table.Column<Guid>(type: "TEXT", nullable: false),
|
|
Enabled = table.Column<bool>(type: "INTEGER", nullable: false),
|
|
Config = table.Column<string>(type: "TEXT", nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_OrganizationConnection", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_OrganizationConnection_Organization_OrganizationId",
|
|
column: x => x.OrganizationId,
|
|
principalTable: "Organization",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "OrganizationSponsorship",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "TEXT", nullable: false),
|
|
SponsoringOrganizationId = table.Column<Guid>(type: "TEXT", nullable: true),
|
|
SponsoringOrganizationUserId = table.Column<Guid>(type: "TEXT", nullable: false),
|
|
SponsoredOrganizationId = table.Column<Guid>(type: "TEXT", nullable: true),
|
|
FriendlyName = table.Column<string>(type: "TEXT", maxLength: 256, nullable: true),
|
|
OfferedToEmail = table.Column<string>(type: "TEXT", maxLength: 256, nullable: true),
|
|
PlanSponsorshipType = table.Column<byte>(type: "INTEGER", nullable: true),
|
|
LastSyncDate = table.Column<DateTime>(type: "TEXT", nullable: true),
|
|
ValidUntil = table.Column<DateTime>(type: "TEXT", nullable: true),
|
|
ToDelete = table.Column<bool>(type: "INTEGER", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_OrganizationSponsorship", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_OrganizationSponsorship_Organization_SponsoredOrganizationId",
|
|
column: x => x.SponsoredOrganizationId,
|
|
principalTable: "Organization",
|
|
principalColumn: "Id");
|
|
table.ForeignKey(
|
|
name: "FK_OrganizationSponsorship_Organization_SponsoringOrganizationId",
|
|
column: x => x.SponsoringOrganizationId,
|
|
principalTable: "Organization",
|
|
principalColumn: "Id");
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "Policy",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "TEXT", nullable: false),
|
|
OrganizationId = table.Column<Guid>(type: "TEXT", nullable: false),
|
|
Type = table.Column<byte>(type: "INTEGER", nullable: false),
|
|
Data = table.Column<string>(type: "TEXT", nullable: true),
|
|
Enabled = table.Column<bool>(type: "INTEGER", nullable: false),
|
|
CreationDate = table.Column<DateTime>(type: "TEXT", nullable: false),
|
|
RevisionDate = table.Column<DateTime>(type: "TEXT", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Policy", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_Policy_Organization_OrganizationId",
|
|
column: x => x.OrganizationId,
|
|
principalTable: "Organization",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "SsoConfig",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<long>(type: "INTEGER", nullable: false)
|
|
.Annotation("Sqlite:Autoincrement", true),
|
|
Enabled = table.Column<bool>(type: "INTEGER", nullable: false),
|
|
OrganizationId = table.Column<Guid>(type: "TEXT", nullable: false),
|
|
Data = table.Column<string>(type: "TEXT", nullable: true),
|
|
CreationDate = table.Column<DateTime>(type: "TEXT", nullable: false),
|
|
RevisionDate = table.Column<DateTime>(type: "TEXT", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_SsoConfig", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_SsoConfig_Organization_OrganizationId",
|
|
column: x => x.OrganizationId,
|
|
principalTable: "Organization",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "ProviderOrganization",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "TEXT", nullable: false),
|
|
ProviderId = table.Column<Guid>(type: "TEXT", nullable: false),
|
|
OrganizationId = table.Column<Guid>(type: "TEXT", nullable: false),
|
|
Key = table.Column<string>(type: "TEXT", nullable: true),
|
|
Settings = table.Column<string>(type: "TEXT", nullable: true),
|
|
CreationDate = table.Column<DateTime>(type: "TEXT", nullable: false),
|
|
RevisionDate = table.Column<DateTime>(type: "TEXT", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_ProviderOrganization", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_ProviderOrganization_Organization_OrganizationId",
|
|
column: x => x.OrganizationId,
|
|
principalTable: "Organization",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
table.ForeignKey(
|
|
name: "FK_ProviderOrganization_Provider_ProviderId",
|
|
column: x => x.ProviderId,
|
|
principalTable: "Provider",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "Cipher",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "TEXT", nullable: false),
|
|
UserId = table.Column<Guid>(type: "TEXT", nullable: true),
|
|
OrganizationId = table.Column<Guid>(type: "TEXT", nullable: true),
|
|
Type = table.Column<byte>(type: "INTEGER", nullable: false),
|
|
Data = table.Column<string>(type: "TEXT", nullable: true),
|
|
Favorites = table.Column<string>(type: "TEXT", nullable: true),
|
|
Folders = table.Column<string>(type: "TEXT", nullable: true),
|
|
Attachments = table.Column<string>(type: "TEXT", nullable: true),
|
|
CreationDate = table.Column<DateTime>(type: "TEXT", nullable: false),
|
|
RevisionDate = table.Column<DateTime>(type: "TEXT", nullable: false),
|
|
DeletedDate = table.Column<DateTime>(type: "TEXT", nullable: true),
|
|
Reprompt = table.Column<byte>(type: "INTEGER", nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Cipher", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_Cipher_Organization_OrganizationId",
|
|
column: x => x.OrganizationId,
|
|
principalTable: "Organization",
|
|
principalColumn: "Id");
|
|
table.ForeignKey(
|
|
name: "FK_Cipher_User_UserId",
|
|
column: x => x.UserId,
|
|
principalTable: "User",
|
|
principalColumn: "Id");
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "Device",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "TEXT", nullable: false),
|
|
UserId = table.Column<Guid>(type: "TEXT", nullable: false),
|
|
Name = table.Column<string>(type: "TEXT", maxLength: 50, nullable: true),
|
|
Type = table.Column<byte>(type: "INTEGER", nullable: false),
|
|
Identifier = table.Column<string>(type: "TEXT", maxLength: 50, nullable: true),
|
|
PushToken = table.Column<string>(type: "TEXT", maxLength: 255, nullable: true),
|
|
CreationDate = table.Column<DateTime>(type: "TEXT", nullable: false),
|
|
RevisionDate = table.Column<DateTime>(type: "TEXT", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Device", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_Device_User_UserId",
|
|
column: x => x.UserId,
|
|
principalTable: "User",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "EmergencyAccess",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "TEXT", nullable: false),
|
|
GrantorId = table.Column<Guid>(type: "TEXT", nullable: false),
|
|
GranteeId = table.Column<Guid>(type: "TEXT", nullable: true),
|
|
Email = table.Column<string>(type: "TEXT", maxLength: 256, nullable: true),
|
|
KeyEncrypted = table.Column<string>(type: "TEXT", nullable: true),
|
|
Type = table.Column<byte>(type: "INTEGER", nullable: false),
|
|
Status = table.Column<byte>(type: "INTEGER", nullable: false),
|
|
WaitTimeDays = table.Column<int>(type: "INTEGER", nullable: false),
|
|
RecoveryInitiatedDate = table.Column<DateTime>(type: "TEXT", nullable: true),
|
|
LastNotificationDate = table.Column<DateTime>(type: "TEXT", nullable: true),
|
|
CreationDate = table.Column<DateTime>(type: "TEXT", nullable: false),
|
|
RevisionDate = table.Column<DateTime>(type: "TEXT", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_EmergencyAccess", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_EmergencyAccess_User_GranteeId",
|
|
column: x => x.GranteeId,
|
|
principalTable: "User",
|
|
principalColumn: "Id");
|
|
table.ForeignKey(
|
|
name: "FK_EmergencyAccess_User_GrantorId",
|
|
column: x => x.GrantorId,
|
|
principalTable: "User",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "Folder",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "TEXT", nullable: false),
|
|
UserId = table.Column<Guid>(type: "TEXT", nullable: false),
|
|
Name = table.Column<string>(type: "TEXT", nullable: true),
|
|
CreationDate = table.Column<DateTime>(type: "TEXT", nullable: false),
|
|
RevisionDate = table.Column<DateTime>(type: "TEXT", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Folder", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_Folder_User_UserId",
|
|
column: x => x.UserId,
|
|
principalTable: "User",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "OrganizationUser",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "TEXT", nullable: false),
|
|
OrganizationId = table.Column<Guid>(type: "TEXT", nullable: false),
|
|
UserId = table.Column<Guid>(type: "TEXT", nullable: true),
|
|
Email = table.Column<string>(type: "TEXT", maxLength: 256, nullable: true),
|
|
Key = table.Column<string>(type: "TEXT", nullable: true),
|
|
ResetPasswordKey = table.Column<string>(type: "TEXT", nullable: true),
|
|
Status = table.Column<short>(type: "INTEGER", nullable: false),
|
|
Type = table.Column<byte>(type: "INTEGER", nullable: false),
|
|
AccessAll = table.Column<bool>(type: "INTEGER", nullable: false),
|
|
ExternalId = table.Column<string>(type: "TEXT", maxLength: 300, nullable: true),
|
|
CreationDate = table.Column<DateTime>(type: "TEXT", nullable: false),
|
|
RevisionDate = table.Column<DateTime>(type: "TEXT", nullable: false),
|
|
Permissions = table.Column<string>(type: "TEXT", nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_OrganizationUser", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_OrganizationUser_Organization_OrganizationId",
|
|
column: x => x.OrganizationId,
|
|
principalTable: "Organization",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
table.ForeignKey(
|
|
name: "FK_OrganizationUser_User_UserId",
|
|
column: x => x.UserId,
|
|
principalTable: "User",
|
|
principalColumn: "Id");
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "ProviderUser",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "TEXT", nullable: false),
|
|
ProviderId = table.Column<Guid>(type: "TEXT", nullable: false),
|
|
UserId = table.Column<Guid>(type: "TEXT", nullable: true),
|
|
Email = table.Column<string>(type: "TEXT", nullable: true),
|
|
Key = table.Column<string>(type: "TEXT", nullable: true),
|
|
Status = table.Column<byte>(type: "INTEGER", nullable: false),
|
|
Type = table.Column<byte>(type: "INTEGER", nullable: false),
|
|
Permissions = table.Column<string>(type: "TEXT", nullable: true),
|
|
CreationDate = table.Column<DateTime>(type: "TEXT", nullable: false),
|
|
RevisionDate = table.Column<DateTime>(type: "TEXT", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_ProviderUser", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_ProviderUser_Provider_ProviderId",
|
|
column: x => x.ProviderId,
|
|
principalTable: "Provider",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
table.ForeignKey(
|
|
name: "FK_ProviderUser_User_UserId",
|
|
column: x => x.UserId,
|
|
principalTable: "User",
|
|
principalColumn: "Id");
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "Send",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "TEXT", nullable: false),
|
|
UserId = table.Column<Guid>(type: "TEXT", nullable: true),
|
|
OrganizationId = table.Column<Guid>(type: "TEXT", nullable: true),
|
|
Type = table.Column<byte>(type: "INTEGER", nullable: false),
|
|
Data = table.Column<string>(type: "TEXT", nullable: true),
|
|
Key = table.Column<string>(type: "TEXT", nullable: true),
|
|
Password = table.Column<string>(type: "TEXT", maxLength: 300, nullable: true),
|
|
MaxAccessCount = table.Column<int>(type: "INTEGER", nullable: true),
|
|
AccessCount = table.Column<int>(type: "INTEGER", nullable: false),
|
|
CreationDate = table.Column<DateTime>(type: "TEXT", nullable: false),
|
|
RevisionDate = table.Column<DateTime>(type: "TEXT", nullable: false),
|
|
ExpirationDate = table.Column<DateTime>(type: "TEXT", nullable: true),
|
|
DeletionDate = table.Column<DateTime>(type: "TEXT", nullable: false),
|
|
Disabled = table.Column<bool>(type: "INTEGER", nullable: false),
|
|
HideEmail = table.Column<bool>(type: "INTEGER", nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Send", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_Send_Organization_OrganizationId",
|
|
column: x => x.OrganizationId,
|
|
principalTable: "Organization",
|
|
principalColumn: "Id");
|
|
table.ForeignKey(
|
|
name: "FK_Send_User_UserId",
|
|
column: x => x.UserId,
|
|
principalTable: "User",
|
|
principalColumn: "Id");
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "SsoUser",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<long>(type: "INTEGER", nullable: false)
|
|
.Annotation("Sqlite:Autoincrement", true),
|
|
UserId = table.Column<Guid>(type: "TEXT", nullable: false),
|
|
OrganizationId = table.Column<Guid>(type: "TEXT", nullable: true),
|
|
ExternalId = table.Column<string>(type: "TEXT", maxLength: 50, nullable: true),
|
|
CreationDate = table.Column<DateTime>(type: "TEXT", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_SsoUser", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_SsoUser_Organization_OrganizationId",
|
|
column: x => x.OrganizationId,
|
|
principalTable: "Organization",
|
|
principalColumn: "Id");
|
|
table.ForeignKey(
|
|
name: "FK_SsoUser_User_UserId",
|
|
column: x => x.UserId,
|
|
principalTable: "User",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "Transaction",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "TEXT", nullable: false),
|
|
UserId = table.Column<Guid>(type: "TEXT", nullable: true),
|
|
OrganizationId = table.Column<Guid>(type: "TEXT", nullable: true),
|
|
Type = table.Column<byte>(type: "INTEGER", nullable: false),
|
|
Amount = table.Column<decimal>(type: "TEXT", nullable: false),
|
|
Refunded = table.Column<bool>(type: "INTEGER", nullable: true),
|
|
RefundedAmount = table.Column<decimal>(type: "TEXT", nullable: true),
|
|
Details = table.Column<string>(type: "TEXT", maxLength: 100, nullable: true),
|
|
PaymentMethodType = table.Column<byte>(type: "INTEGER", nullable: true),
|
|
Gateway = table.Column<byte>(type: "INTEGER", nullable: true),
|
|
GatewayId = table.Column<string>(type: "TEXT", maxLength: 50, nullable: true),
|
|
CreationDate = table.Column<DateTime>(type: "TEXT", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Transaction", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_Transaction_Organization_OrganizationId",
|
|
column: x => x.OrganizationId,
|
|
principalTable: "Organization",
|
|
principalColumn: "Id");
|
|
table.ForeignKey(
|
|
name: "FK_Transaction_User_UserId",
|
|
column: x => x.UserId,
|
|
principalTable: "User",
|
|
principalColumn: "Id");
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "CollectionGroups",
|
|
columns: table => new
|
|
{
|
|
CollectionId = table.Column<Guid>(type: "TEXT", nullable: false),
|
|
GroupId = table.Column<Guid>(type: "TEXT", nullable: false),
|
|
ReadOnly = table.Column<bool>(type: "INTEGER", nullable: false),
|
|
HidePasswords = table.Column<bool>(type: "INTEGER", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_CollectionGroups", x => new { x.CollectionId, x.GroupId });
|
|
table.ForeignKey(
|
|
name: "FK_CollectionGroups_Collection_CollectionId",
|
|
column: x => x.CollectionId,
|
|
principalTable: "Collection",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
table.ForeignKey(
|
|
name: "FK_CollectionGroups_Group_GroupId",
|
|
column: x => x.GroupId,
|
|
principalTable: "Group",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "CollectionCipher",
|
|
columns: table => new
|
|
{
|
|
CollectionId = table.Column<Guid>(type: "TEXT", nullable: false),
|
|
CipherId = table.Column<Guid>(type: "TEXT", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_CollectionCipher", x => new { x.CollectionId, x.CipherId });
|
|
table.ForeignKey(
|
|
name: "FK_CollectionCipher_Cipher_CipherId",
|
|
column: x => x.CipherId,
|
|
principalTable: "Cipher",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
table.ForeignKey(
|
|
name: "FK_CollectionCipher_Collection_CollectionId",
|
|
column: x => x.CollectionId,
|
|
principalTable: "Collection",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "AuthRequest",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "TEXT", nullable: false),
|
|
UserId = table.Column<Guid>(type: "TEXT", nullable: false),
|
|
Type = table.Column<byte>(type: "INTEGER", nullable: false),
|
|
RequestDeviceIdentifier = table.Column<string>(type: "TEXT", maxLength: 50, nullable: true),
|
|
RequestDeviceType = table.Column<byte>(type: "INTEGER", nullable: false),
|
|
RequestIpAddress = table.Column<string>(type: "TEXT", maxLength: 50, nullable: true),
|
|
RequestFingerprint = table.Column<string>(type: "TEXT", nullable: true),
|
|
ResponseDeviceId = table.Column<Guid>(type: "TEXT", nullable: true),
|
|
AccessCode = table.Column<string>(type: "TEXT", maxLength: 25, nullable: true),
|
|
PublicKey = table.Column<string>(type: "TEXT", nullable: true),
|
|
Key = table.Column<string>(type: "TEXT", nullable: true),
|
|
MasterPasswordHash = table.Column<string>(type: "TEXT", nullable: true),
|
|
Approved = table.Column<bool>(type: "INTEGER", nullable: true),
|
|
CreationDate = table.Column<DateTime>(type: "TEXT", nullable: false),
|
|
ResponseDate = table.Column<DateTime>(type: "TEXT", nullable: true),
|
|
AuthenticationDate = table.Column<DateTime>(type: "TEXT", nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_AuthRequest", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_AuthRequest_Device_ResponseDeviceId",
|
|
column: x => x.ResponseDeviceId,
|
|
principalTable: "Device",
|
|
principalColumn: "Id");
|
|
table.ForeignKey(
|
|
name: "FK_AuthRequest_User_UserId",
|
|
column: x => x.UserId,
|
|
principalTable: "User",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "CollectionUsers",
|
|
columns: table => new
|
|
{
|
|
CollectionId = table.Column<Guid>(type: "TEXT", nullable: false),
|
|
OrganizationUserId = table.Column<Guid>(type: "TEXT", nullable: false),
|
|
UserId = table.Column<Guid>(type: "TEXT", nullable: true),
|
|
ReadOnly = table.Column<bool>(type: "INTEGER", nullable: false),
|
|
HidePasswords = table.Column<bool>(type: "INTEGER", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_CollectionUsers", x => new { x.CollectionId, x.OrganizationUserId });
|
|
table.ForeignKey(
|
|
name: "FK_CollectionUsers_Collection_CollectionId",
|
|
column: x => x.CollectionId,
|
|
principalTable: "Collection",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
table.ForeignKey(
|
|
name: "FK_CollectionUsers_OrganizationUser_OrganizationUserId",
|
|
column: x => x.OrganizationUserId,
|
|
principalTable: "OrganizationUser",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
table.ForeignKey(
|
|
name: "FK_CollectionUsers_User_UserId",
|
|
column: x => x.UserId,
|
|
principalTable: "User",
|
|
principalColumn: "Id");
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "GroupUser",
|
|
columns: table => new
|
|
{
|
|
GroupId = table.Column<Guid>(type: "TEXT", nullable: false),
|
|
OrganizationUserId = table.Column<Guid>(type: "TEXT", nullable: false),
|
|
UserId = table.Column<Guid>(type: "TEXT", nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_GroupUser", x => new { x.GroupId, x.OrganizationUserId });
|
|
table.ForeignKey(
|
|
name: "FK_GroupUser_Group_GroupId",
|
|
column: x => x.GroupId,
|
|
principalTable: "Group",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
table.ForeignKey(
|
|
name: "FK_GroupUser_OrganizationUser_OrganizationUserId",
|
|
column: x => x.OrganizationUserId,
|
|
principalTable: "OrganizationUser",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
table.ForeignKey(
|
|
name: "FK_GroupUser_User_UserId",
|
|
column: x => x.UserId,
|
|
principalTable: "User",
|
|
principalColumn: "Id");
|
|
});
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_AuthRequest_ResponseDeviceId",
|
|
table: "AuthRequest",
|
|
column: "ResponseDeviceId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_AuthRequest_UserId",
|
|
table: "AuthRequest",
|
|
column: "UserId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_Cipher_OrganizationId",
|
|
table: "Cipher",
|
|
column: "OrganizationId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_Cipher_UserId",
|
|
table: "Cipher",
|
|
column: "UserId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_Collection_OrganizationId",
|
|
table: "Collection",
|
|
column: "OrganizationId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_CollectionCipher_CipherId",
|
|
table: "CollectionCipher",
|
|
column: "CipherId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_CollectionGroups_GroupId",
|
|
table: "CollectionGroups",
|
|
column: "GroupId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_CollectionUsers_OrganizationUserId",
|
|
table: "CollectionUsers",
|
|
column: "OrganizationUserId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_CollectionUsers_UserId",
|
|
table: "CollectionUsers",
|
|
column: "UserId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_Device_UserId",
|
|
table: "Device",
|
|
column: "UserId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_EmergencyAccess_GranteeId",
|
|
table: "EmergencyAccess",
|
|
column: "GranteeId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_EmergencyAccess_GrantorId",
|
|
table: "EmergencyAccess",
|
|
column: "GrantorId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_Folder_UserId",
|
|
table: "Folder",
|
|
column: "UserId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_Group_OrganizationId",
|
|
table: "Group",
|
|
column: "OrganizationId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_GroupUser_OrganizationUserId",
|
|
table: "GroupUser",
|
|
column: "OrganizationUserId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_GroupUser_UserId",
|
|
table: "GroupUser",
|
|
column: "UserId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_OrganizationApiKey_OrganizationId",
|
|
table: "OrganizationApiKey",
|
|
column: "OrganizationId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_OrganizationConnection_OrganizationId",
|
|
table: "OrganizationConnection",
|
|
column: "OrganizationId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_OrganizationSponsorship_SponsoredOrganizationId",
|
|
table: "OrganizationSponsorship",
|
|
column: "SponsoredOrganizationId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_OrganizationSponsorship_SponsoringOrganizationId",
|
|
table: "OrganizationSponsorship",
|
|
column: "SponsoringOrganizationId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_OrganizationUser_OrganizationId",
|
|
table: "OrganizationUser",
|
|
column: "OrganizationId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_OrganizationUser_UserId",
|
|
table: "OrganizationUser",
|
|
column: "UserId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_Policy_OrganizationId",
|
|
table: "Policy",
|
|
column: "OrganizationId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_ProviderOrganization_OrganizationId",
|
|
table: "ProviderOrganization",
|
|
column: "OrganizationId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_ProviderOrganization_ProviderId",
|
|
table: "ProviderOrganization",
|
|
column: "ProviderId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_ProviderUser_ProviderId",
|
|
table: "ProviderUser",
|
|
column: "ProviderId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_ProviderUser_UserId",
|
|
table: "ProviderUser",
|
|
column: "UserId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_Send_OrganizationId",
|
|
table: "Send",
|
|
column: "OrganizationId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_Send_UserId",
|
|
table: "Send",
|
|
column: "UserId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_SsoConfig_OrganizationId",
|
|
table: "SsoConfig",
|
|
column: "OrganizationId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_SsoUser_OrganizationId",
|
|
table: "SsoUser",
|
|
column: "OrganizationId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_SsoUser_UserId",
|
|
table: "SsoUser",
|
|
column: "UserId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_Transaction_OrganizationId",
|
|
table: "Transaction",
|
|
column: "OrganizationId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_Transaction_UserId",
|
|
table: "Transaction",
|
|
column: "UserId");
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropTable(
|
|
name: "AuthRequest");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "CollectionCipher");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "CollectionGroups");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "CollectionUsers");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "EmergencyAccess");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "Event");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "Folder");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "Grant");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "GroupUser");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "Installation");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "OrganizationApiKey");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "OrganizationConnection");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "OrganizationSponsorship");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "Policy");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "ProviderOrganization");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "ProviderUser");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "Send");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "SsoConfig");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "SsoUser");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "TaxRate");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "Transaction");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "Device");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "Cipher");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "Collection");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "Group");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "OrganizationUser");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "Provider");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "Organization");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "User");
|
|
}
|
|
}
|