1
0

Added is_binding attribute to Goal

Fixed test_index to check for data rows only
This commit is contained in:
cryptogopher
2020-08-18 17:40:46 +02:00
parent 955125b843
commit 59a14043c8
13 changed files with 43 additions and 21 deletions

View File

@@ -74,6 +74,7 @@ class CreateSchema <
t.integer :group
t.references :source
t.string :source_ident
# TODO: rename to is_hidden
t.boolean :hidden
t.decimal :ready_amount, precision: 12, scale: 6
t.timestamps null: false
@@ -96,6 +97,7 @@ class CreateSchema <
create_table :goals do |t|
t.references :project
t.boolean :is_binding
t.string :name
t.text :description
t.timestamps null: false