This repository has been archived on 2021-11-24. You can view files and clone it, but cannot push or open issues or pull requests.
phone_app/db/migrate/20210827164230_create_p_grades.rb
2021-08-27 18:43:38 +02:00

10 lines
158 B
Ruby

class CreatePGrades < ActiveRecord::Migration[6.0]
def change
create_table :p_grades do |t|
t.string :grade
t.timestamps
end
end
end