MiniDigger/Hangar

View on GitHub
ore/conf/evolutions/default/61.sql

Summary

Maintainability
Test Coverage
# --- !Ups

alter table projects add column is_sponge_plugin boolean not null default false;
alter table projects add column is_forge_mod boolean not null default false;

# --- !Downs

alter table projects drop column is_sponge_plugin;
alter table projects drop column is_forge_mod;