Sha256: d90bc3822b4eb833c7e45be747e81a93eaedfc565301b4b1f5929cf939af07cc
Contents?: true
Size: 330 Bytes
Versions: 2
Compression:
Stored size: 330 Bytes
Contents
class CreateInvoices < ActiveRecord::Migration def self.up create_table :invoices do |t| t.integer :client_id t.text :comments t.timestamp :issued_on t.boolean :is_published, :default => 0, :null => false t.timestamps end end def self.down drop_table :invoices end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
brisk-bills-0.8.2 | db/migrate/014_create_invoices.rb |
brisk-bills-0.8.1 | db/migrate/014_create_invoices.rb |