class Taskflow::TaskflowGenerator

Public Instance Methods

migration() click to toggle source
# File lib/generators/taskflow/taskflow_generator.rb, line 16
def migration
    migration_template "create_taskflow_flows.rb", "db/migrate/create_taskflow_flows.rb"
    migration_template "create_taskflow_tasks.rb", "db/migrate/create_taskflow_tasks.rb"
    migration_template "create_taskflow_loggers.rb", "db/migrate/create_taskflow_loggers.rb"
    migration_template "create_taskflow_records.rb", "db/migrate/create_taskflow_records.rb"
    migration_template "create_taskflow_relation.rb", "db/migrate/create_taskflow_relation.rb"
end