Esempio n. 1
0
        private void AddMigrationStep(MigrationStepType stepType, TableSchema.Table table)
        {
            MigrationStep step = new MigrationStep(stepType);

            step.Table = table;
            steps.Add(step);
        }
Esempio n. 2
0
        private void AddMigrationStep(MigrationStepType stepType, TableSchema.TableColumn col1, TableSchema.TableColumn col2)
        {
            MigrationStep step = new MigrationStep(stepType);

            step.Column  = col1;
            step.Column2 = col2;
            steps.Add(step);
        }
Esempio n. 3
0
 public MigrationStep(MigrationStepType stepType)
 {
     StepType = stepType;
 }