class CreateNcms < ActiveRecord::Migration[4.2]
  def change
    create_table :ncms do |t|
      t.string :codigo, limit: 8
      t.string :descricao

      t.timestamps null: false
    end
  end
end
