mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 11:44:58 +08:00
14 lines
397 B
C#
14 lines
397 B
C#
using Orchard.Data.Migration;
|
|
|
|
namespace Orchard.Core.Messaging {
|
|
public class Migrations : DataMigrationImpl {
|
|
|
|
public int Create() {
|
|
SchemaBuilder.CreateTable("MessageSettingsPartRecord", table => table
|
|
.ContentPartRecord()
|
|
.Column<string>("DefaultChannelService")
|
|
);
|
|
return 1;
|
|
}
|
|
}
|
|
} |