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/20210827074615_create_p_spec_values.rb
2021-08-27 09:46:35 +02:00

11 lines
188 B
Ruby

class CreatePSpecValues < ActiveRecord::Migration[6.0]
def change
create_table :p_spec_values do |t|
t.string :value
t.string :unit
t.timestamps
end
end
end