Sha256: a9b3e3a69356d15ff9e0cbb1ffb612f98e84d67bd055b439331fc6d9c450d82e
Contents?: true
Size: 349 Bytes
Versions: 5
Compression:
Stored size: 349 Bytes
Contents
class CreateComments < ActiveRecord::Migration[5.2] def change create_table :comments do |t| t.references :content, polymorphic: true t.string :name t.string :email t.text :comment t.boolean :allow_contact t.references :user, foreign_key: true t.boolean :deleted t.timestamps end end end
Version data entries
5 entries across 5 versions & 1 rubygems