mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-03-03 19:24:48 +08:00
Merge pull request #221 from mz3944/mz_migration_constant_qfix
Fixed missing namespace in constant in migration.
This commit is contained in:
commit
47707779c0
1 changed files with 2 additions and 2 deletions
|
@ -12,8 +12,8 @@ class AddOrganizationManagementSupport < ActiveRecord::Migration
|
|||
change_column_null :assets, :estimated_size, false
|
||||
|
||||
# Add space taken to organization (in B!)
|
||||
add_column :organizations, :space_taken, :integer,
|
||||
limit: 5, default: MINIMAL_ORGANIZATION_SPACE_TAKEN
|
||||
add_column :organizations, :space_taken, :integer, limit: 5,
|
||||
default: Constants::MINIMAL_ORGANIZATION_SPACE_TAKEN
|
||||
change_column_null :organizations, :space_taken, false
|
||||
|
||||
# Add reference to private user
|
||||
|
|
Loading…
Reference in a new issue