nownabe/database_cleaner-spanner

View on GitHub
example/rails/db/migrate/20221113100815_create_customers.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CreateCustomers < ActiveRecord::Migration[7.0]
  def change
    create_table :customers do |t|
      t.string :name, null: false

      t.timestamps
    end
  end
end