11 lines
188 B
Ruby
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
|