20211210121307_create_technologies.rb 190 B

12345678910
  1. class CreateTechnologies < ActiveRecord::Migration[6.1]
  2. def change
  3. create_table :technologies do |t|
  4. t.string :name
  5. t.integer :nature
  6. t.timestamps
  7. end
  8. end
  9. end