Sha256: 7ae1be8be3d5ff35ba164d672e7742985a90315f8c0909d7e8c1807810d181a9

Contents?: true

Size: 430 Bytes

Versions: 4

Compression:

Stored size: 430 Bytes

Contents

###
# CreateDummyBookmarkers class
#
# This class defines the create dummy bookmarkers migration in bookmark system
###
class CreateDummyBookmarkers < ActiveRecord::Migration
  ###
  # Changes the database
  ###
  def change
    ###
    # Dummy bookmarkers table creation
    ###
    create_table :dummy_bookmarkers do |t|
      ###
      # Timestamps fields definition
      ###
      t.timestamps null: false
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
bookmark_system-0.0.9 spec/db/migrate/20140926000005_create_dummy_bookmarkers.rb
bookmark_system-0.0.8 spec/db/migrate/20140926000005_create_dummy_bookmarkers.rb
bookmark_system-0.0.7 spec/db/migrate/20140926000005_create_dummy_bookmarkers.rb
bookmark_system-0.0.6 spec/db/migrate/20140926000005_create_dummy_bookmarkers.rb