Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
blocks / db / migrate / 01_create_blocks.rb
Size: Mime:
class CreateBlocks < ActiveRecord::Migration[5.1]
  def change
    create_table :blocks_blocks do |t|
      t.string :title
      t.integer :position
      t.references :parent, polymorphic: true, index: true
      t.timestamps null: false
    end
  end
end