Sha256: 5ce0af85a6e373424c23fb80b6cf875bd8e5c07de698b105a6fbb6bcb0b7b81c

Contents?: true

Size: 370 Bytes

Versions: 2

Compression:

Stored size: 370 Bytes

Contents

# typed: true
class CreateLocalLawPipelines < ActiveRecord::Migration[6.0]
  def change
    create_table :local_law_pipelines do |t|
      t.text :title
      t.text :paragraph
      t.text :local_law_link
      t.integer :paragraph_number
      t.string :book
      t.references :local_law_pipeline, null: false, foreign_key: true

      t.timestamps
    end
  end
end

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
ezii-browser-1.0.0 server/redux-os/db/migrate/20190930164627_create_local_law_pipelines.rb
mega-os-1.0.0 db/migrate/20190930164627_create_local_law_pipelines.rb