class CreateAsyncSchemaMigrations
Public Instance Methods
change()
click to toggle source
# File lib/generators/rails_async_migrations/templates/create_async_schema_migrations.rb, line 2 def change create_table :async_schema_migrations do |t| t.string :version t.string :direction t.string :state t.timestamps end end