summaryrefslogtreecommitdiff
path: root/db/migrate/20210502200959_create_skills.rb
blob: dbe3d3e3dfdbfa715ad4ed525df66cd029b3de9c (plain)
1
2
3
4
5
6
7
8
9
10
11
class CreateSkills < ActiveRecord::Migration[6.1]
  def change
    create_table :skills do |t|
      t.string :gid
      t.string :name
      t.text :description

      t.timestamps
    end
  end
end