lib/hanami/commands/db/create.rb in hanami-1.0.0.beta2 vs lib/hanami/commands/db/create.rb in hanami-1.0.0.beta3
- old
+ new
@@ -1,12 +1,15 @@
require 'hanami/commands/command'
module Hanami
module Commands
+ # @api private
class DB
+ # @api private
class Create < Command
requires 'model.configuration'
+ # @api private
def start
require 'hanami/model/migrator'
Hanami::Model::Migrator.create
end
end