test/rails_root/app/models/subscription_plan.rb in muck-commerce-0.1.9 vs test/rails_root/app/models/subscription_plan.rb in muck-commerce-0.2.0

- old
+ new

@@ -1,3 +1,17 @@ +# == Schema Information +# +# Table name: subscription_plans +# +# id :integer(4) not null, primary key +# name :string(255) +# sku :string(255) +# amount :integer(4) +# renewal_period :integer(4) +# trial_period :integer(4) +# created_at :datetime +# updated_at :datetime +# + class SubscriptionPlan < ActiveRecord::Base acts_as_muck_subscription_plan -end \ No newline at end of file +end