PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Come faccio a creare una migrazione dei binari per rimuovere/modificare la precisione e ridimensionare in base al decimale?

formato :

change_column(table_name, column_name, type, options): Changes the column to a different type using the same parameters as add_column.

Primo nel tuo terminale:

rails g migration change_numeric_field_in_my_table

Quindi nel tuo file di migrazione:

class ChangeNumbericFieldInMyTable < ActiveRecord::Migration
  def self.up
   change_column :my_table, :revenue_per_transaction, :decimal, :precision => give whatever, :scale => give whatever
  end
end

poi

run rake db:migrate

Fonte:http://api.rubyonrails.org/classes/ActiveRecord/Migration.html