mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 03:25:23 +08:00
18 lines
466 B
Plaintext
18 lines
466 B
Plaintext
using System;
|
|
using System.Collections.Generic;
|
|
using Orchard.ContentManagement.Drivers;
|
|
using Orchard.ContentManagement.MetaData;
|
|
using Orchard.ContentManagement.MetaData.Builders;
|
|
using Orchard.Core.Contents.Extensions;
|
|
using Orchard.Data.Migration;
|
|
|
|
namespace $$FeatureName$$.DataMigrations {
|
|
public class $$ClassName$$DataMigration : DataMigrationImpl {
|
|
|
|
public int Create() {
|
|
$$Commands$$
|
|
|
|
return 1;
|
|
}
|
|
}
|
|
} |