test/rails_root/app/models/billing_information.rb in muck-commerce-0.1.9 vs test/rails_root/app/models/billing_information.rb in muck-commerce-0.2.0
- old
+ new
@@ -1,5 +1,40 @@
+# == Schema Information
+#
+# Table name: billing_informations
+#
+# id :integer(4) not null, primary key
+# billable_id :integer(4)
+# billable_type :string(255)
+# first_name :string(128) default(""), not null
+# last_name :string(128) default(""), not null
+# address1 :string(512) default(""), not null
+# address2 :string(512)
+# city :string(128) default(""), not null
+# state_id :integer(4)
+# country_id :integer(4)
+# postal_code :string(255) default(""), not null
+# telephone :string(255) default(""), not null
+# payment_method :string(255) default("CC")
+# credit_card_type :string(255)
+# credit_card_last_digits :string(4)
+# credit_card_expiration :datetime
+# achname :string(1024)
+# achrouting :string(1024)
+# achnumber :string(1024)
+# achholder :string(1024)
+# achtype :string(64)
+# vault_id :string(512)
+# customer_profile_id :string(512)
+# customer_payment_profile_id :string(512)
+# default :boolean(1)
+# created_at :datetime
+# updated_at :datetime
+# name :string(256)
+# company :string(256)
+#
+
class BillingInformation < ActiveRecord::Base
acts_as_muck_billing_information
-end
\ No newline at end of file
+end