Sha256: 29e0544c05518d7caca8959f5bc55793d3d9b54c6b080d89521cb85feb6e17f1
Contents?: true
Size: 423 Bytes
Versions: 57
Compression:
Stored size: 423 Bytes
Contents
class CreateResponseSets < ActiveRecord::Migration def self.up create_table :response_sets do |t| # Context t.integer :user_id t.integer :survey_id # Content t.string :access_code #unique id for the object used in urls # Expiry t.datetime :started_at t.datetime :completed_at t.timestamps end end def self.down drop_table :response_sets end end
Version data entries
57 entries across 55 versions & 4 rubygems