diff options
author | David Gay <david@davidgay.org> | 2021-05-02 16:15:55 -0400 |
---|---|---|
committer | David Gay <david@davidgay.org> | 2021-05-02 16:15:55 -0400 |
commit | 7997e112fbc67eef309bb3969ad41f90a8bfbc89 (patch) | |
tree | 6da48af487ae581365fcc0d6d8fa6894e3724506 /db/migrate | |
parent | 2b3422be0a68b18125bb471bef7adcc32cd3b486 (diff) |
Add skills
Diffstat (limited to 'db/migrate')
-rw-r--r-- | db/migrate/20210502200959_create_skills.rb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/db/migrate/20210502200959_create_skills.rb b/db/migrate/20210502200959_create_skills.rb new file mode 100644 index 0000000..dbe3d3e --- /dev/null +++ b/db/migrate/20210502200959_create_skills.rb @@ -0,0 +1,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 |