mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2026-02-09 09:16:41 +08:00
62 lines
1.8 KiB
C#
62 lines
1.8 KiB
C#
using Orchard.ContentManagement.MetaData;
|
|||
|
|
using Orchard.Core.Contents.Extensions;
|
||
|
|
using Orchard.Data.Migration;
|
||
|
|
using Orchard.Environment.Extensions;
|
||
|
|
|
||
|
|
namespace Orchard.AntiSpam {
|
||
|
|
public class Migrations : DataMigrationImpl {
|
||
|
|
|
||
|
|
public int Create() {
|
||
|
|
|
||
|
|
ContentDefinitionManager.AlterPartDefinition("SubmissionLimitPart", cfg => cfg
|
||
|
|
.Attachable()
|
||
|
|
);
|
||
|
|
|
||
|
|
ContentDefinitionManager.AlterPartDefinition("ReCaptchaPart", cfg => cfg
|
||
|
|
.Attachable()
|
||
|
|
);
|
||
|
|
|
||
|
|
ContentDefinitionManager.AlterPartDefinition("SpamFilterPart", cfg => cfg
|
||
|
|
.Attachable()
|
||
|
|
);
|
||
|
|
|
||
|
|
SchemaBuilder.CreateTable("SpamFilterPartRecord",
|
||
|
|
table => table.ContentPartVersionRecord()
|
||
|
|
.Column<string>("Status", c => c.WithLength(64))
|
||
|
|
);
|
||
|
|
|
||
|
|
return 1;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
[OrchardFeature("Akismet.Filter")]
|
||
|
|
public class AkismetMigrations : DataMigrationImpl {
|
||
|
|
|
||
|
|
public int Create() {
|
||
|
|
|
||
|
|
SchemaBuilder.CreateTable("AkismetSettingsPartRecord",
|
||
|
|
table => table.ContentPartVersionRecord()
|
||
|
|
.Column<bool>("TrustAuthenticatedUsers")
|
||
|
|
.Column<string>("ApiKey")
|
||
|
|
);
|
||
|
|
|
||
|
|
return 1;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
[OrchardFeature("TypePad.Filter")]
|
||
|
|
public class TypePadMigrations : DataMigrationImpl {
|
||
|
|
|
||
|
|
public int Create() {
|
||
|
|
|
||
|
|
SchemaBuilder.CreateTable("TypePadSettingsPartRecord",
|
||
|
|
table => table.ContentPartVersionRecord()
|
||
|
|
.Column<bool>("TrustAuthenticatedUsers")
|
||
|
|
.Column<string>("ApiKey")
|
||
|
|
);
|
||
|
|
|
||
|
|
return 1;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|