mirror of
https://github.com/makayabou/asg-server.git
synced 2026-05-02 17:43:36 +02:00
11 lines
291 B
SQL
11 lines
291 B
SQL
-- +goose Up
|
|
-- +goose StatementBegin
|
|
ALTER TABLE `message_recipients`
|
|
MODIFY COLUMN `phone_number` varchar(16) NOT NULL;
|
|
-- +goose StatementEnd
|
|
--
|
|
-- +goose Down
|
|
-- +goose StatementBegin
|
|
ALTER TABLE `message_recipients`
|
|
MODIFY COLUMN `phone_number` char(11) NOT NULL;
|
|
-- +goose StatementEnd |