You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
375 B
6 lines
375 B
-- Migration: add externe_identifier and body_text columns to motions
|
|
-- externe_identifier: e.g. "kst-36600-VII-28" from DocumentVersie.ExterneIdentifier
|
|
-- body_text: full plain-text motion body scraped from officielebekendmakingen.nl
|
|
|
|
ALTER TABLE motions ADD COLUMN IF NOT EXISTS externe_identifier VARCHAR;
|
|
ALTER TABLE motions ADD COLUMN IF NOT EXISTS body_text VARCHAR;
|
|
|