class CreateClients < ActiveRecord::Migration[6.0]
  def change
    create_table :clients do |t|
      t.string :name, null: false
      t.string :contact
      t.integer :status, default: 0

      t.string :creatd_by
      t.timestamps
    end
  end
end
