0
私のrails3アプリには、私はデビットノートコントローラ、モデル、およびscaffoldによって作成されたビューを持っています。 私はあなたの移行を示しています。ユニークなデビットノート番号を自動的に生成する方法
class CreateDebitnotes < ActiveRecord::Migration
def self.up
create_table :debitnotes do |t|
t.string :debit_note_number
t.date :date
t.decimal :amount, :precision =>18, :scale => 2
t.string :debit_account_of
t.string :debit_for
t.text :description
t.timestamps
end
end
DEF DROP_TABLE をするself.down:私は、ユーザーが作成する新しいフォームを開いたときに自動的にユニークなdebitnote番号を生成したい私のアプリで エンド エンド
をdebitnotes deb