-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
9 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
.git | ||
.dockerignore | ||
.env | ||
.rbenv-vars | ||
|
||
.idea | ||
.bundle | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,3 +19,4 @@ spec/examples.txt | |
|
||
# Ignore local env variables | ||
.env | ||
.rbenv-vars |
5 changes: 5 additions & 0 deletions
5
db/migrate/20210712080701_add_display_position_index_to_logo.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
class AddDisplayPositionIndexToLogo < ActiveRecord::Migration[5.2] | ||
def change | ||
add_column :logos, :display_pos_index, :integer | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,3 @@ | ||
# | ||
# Barcode Workflow Manager - A web framework to assemble, analyze and manage DNA | ||
# barcode data and metadata. | ||
# Copyright (C) 2020 Kai Müller <[email protected]>, Sarah Wiechers | ||
# <[email protected]> | ||
# | ||
# This file is part of Barcode Workflow Manager. | ||
# | ||
# Barcode Workflow Manager is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU Affero General Public License as | ||
# published by the Free Software Foundation, either version 3 of the | ||
# License, or (at your option) any later version. | ||
# | ||
# Barcode Workflow Manager is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU Affero General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU Affero General Public License | ||
# along with Barcode Workflow Manager. If not, see | ||
# <http://www.gnu.org/licenses/>. | ||
# | ||
# This file is auto-generated from the current state of the database. Instead | ||
# of editing this file, please use the migrations feature of Active Record to | ||
# incrementally modify your database, and then regenerate this schema definition. | ||
|
@@ -32,7 +10,7 @@ | |
# | ||
# It's strongly recommended that you check this file into your version control system. | ||
|
||
ActiveRecord::Schema.define(version: 2020_11_11_094430) do | ||
ActiveRecord::Schema.define(version: 2021_07_12_080701) do | ||
|
||
# These are extensions that must be enabled in order to support this database | ||
enable_extension "pg_stat_statements" | ||
|
@@ -419,6 +397,7 @@ | |
t.boolean "main", default: true | ||
t.bigint "home_id" | ||
t.boolean "display", default: true | ||
t.integer "display_pos_index" | ||
t.index ["home_id"], name: "index_logos_on_home_id" | ||
end | ||
|
||
|