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

            step.Table = table;
            steps.Add(step);
        }
Exemplo 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);
        }
Exemplo n.º 3
0
 public MigrationStep(MigrationStepType stepType)
 {
     StepType = stepType;
 }