Sha256: da5ab4bf2935c980b1bd0843509cda1b756bb1b533719f494c58781656a3f513
Contents?: true
Size: 309 Bytes
Versions: 218
Compression:
Stored size: 309 Bytes
Contents
class CreateUserCheckoutStats < ActiveRecord::Migration def self.up create_table :user_checkout_stats do |t| t.datetime :start_date t.datetime :end_date t.text :note t.string :state t.timestamps end end def self.down drop_table :user_checkout_stats end end
Version data entries
218 entries across 218 versions & 8 rubygems