Sha256: 3a441327b42969837e9ccb75a6a402de373f52a7252b43f0ac97ebd19c08c07d
Contents?: true
Size: 695 Bytes
Versions: 27
Compression:
Stored size: 695 Bytes
Contents
# == Schema Information # # Table name: wbase_plans # # id :integer not null, primary key # name :string not null # stripe_id :string not null # price :integer not null # interval :string default("monthly") # features :text # highlight :boolean default(FALSE) # display_order :integer default(0) # created_at :datetime not null # updated_at :datetime not null # # Indexes # # index_wbase_plans_on_name (name) # index_wbase_plans_on_stripe_id (stripe_id) # module Wbase class Plan < ActiveRecord::Base has_many :subscriptions end end
Version data entries
27 entries across 27 versions & 1 rubygems