compute-tooling / compute-studio

A Utility for Sharing Computational Models
https://compute.studio
Other
15 stars 5 forks source link

Check in migrations from django upgrade in PR #483 #490

Closed hdoupe closed 3 years ago

hdoupe commented 3 years ago

Most of these migrations are for the JSON field being moved to a different package in Django. These do not result in any actual changes in the DB.

The only SQL command run on the table is:

BEGIN;
--
-- Alter field provider_data on build
--
--
-- Alter field first_name on user
--
ALTER TABLE "users_user" ALTER COLUMN "first_name" TYPE varchar(150);
COMMIT;