Sha256: 86314ef57f0e785a7bac9dc5ad1fffda1f3a0717db3a91bfb39dada5ef615341

Contents?: true

Size: 423 Bytes

Versions: 2

Compression:

Stored size: 423 Bytes

Contents

###
# CreateDummyFollowers class
#
# This class defines the create dummy followers migration in follow system
###
class CreateDummyFollowers < ActiveRecord::Migration[5.0]
  ###
  # Changes the database
  ###
  def change
    ###
    # Dummy followers table creation
    ###
    create_table :dummy_followers do |t|
      ###
      # Timestamps fields definition
      ###
      t.timestamps null: false
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
follow_system-0.1.1 spec/db/migrate/20140926000005_create_dummy_followers.rb
follow_system-0.1.0 spec/db/migrate/20140926000005_create_dummy_followers.rb