mirror of
https://github.com/Xevion/banner.git
synced 2026-01-31 08:23:35 -06:00
6 lines
310 B
SQL
6 lines
310 B
SQL
-- Add structured first/last name columns to instructors.
|
|
-- Populated by Rust-side backfill (parse_banner_name) since we need
|
|
-- HTML entity decoding and suffix extraction that SQL can't handle well.
|
|
ALTER TABLE instructors ADD COLUMN first_name VARCHAR;
|
|
ALTER TABLE instructors ADD COLUMN last_name VARCHAR;
|