class CreatePixtechParams < ActiveRecord::Migration
  def change
    create_table :pixtech_params do |t|
      t.string :name
      t.string :value
      t.references :pixtech, index: true, foreign_key: true

      t.timestamps null: false
    end
  end
end
