class CreateLocalLawPipelines

typed: true

Public Instance Methods

change() click to toggle source
# File server/redux-os/db/migrate/20190930164627_create_local_law_pipelines.rb, line 3
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