Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[~] bump version #93

Merged
merged 2 commits into from
Oct 7, 2024
Merged

[~] bump version #93

merged 2 commits into from
Oct 7, 2024

Conversation

skcc321
Copy link
Owner

@skcc321 skcc321 commented Oct 7, 2024

prepare release

@@ -0,0 +1,19 @@
# This file is auto-generated from the current state of the database. Instead
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📝 [rubocop] <Style/FrozenStringLiteralComment> reported by reviewdog 🐶
Missing frozen string literal comment.

Suggested change
# This file is auto-generated from the current state of the database. Instead
# frozen_string_literal: true
# This file is auto-generated from the current state of the database. Instead

#
# It's strongly recommended that you check this file into your version control system.

ActiveRecord::Schema[7.2].define(version: 2019_03_28_085157) do
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📝 [rubocop] <Style/NumericLiterals> reported by reviewdog 🐶
Use underscores(_) as thousands separator and separate every 3 digits with them.

Suggested change
ActiveRecord::Schema[7.2].define(version: 2019_03_28_085157) do
ActiveRecord::Schema[7.2].define(version: 20_190_328_085_157) do

# It's strongly recommended that you check this file into your version control system.

ActiveRecord::Schema[7.2].define(version: 2019_03_28_085157) do
create_table "deploy_pins", charset: "utf8mb3", force: :cascade do |t|
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📝 [rubocop] <Style/StringLiterals> reported by reviewdog 🐶
Prefer single-quoted strings when you don't need string interpolation or special symbols.

Suggested change
create_table "deploy_pins", charset: "utf8mb3", force: :cascade do |t|
create_table 'deploy_pins', charset: "utf8mb3", force: :cascade do |t|

# It's strongly recommended that you check this file into your version control system.

ActiveRecord::Schema[7.2].define(version: 2019_03_28_085157) do
create_table "deploy_pins", charset: "utf8mb3", force: :cascade do |t|
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📝 [rubocop] <Style/StringLiterals> reported by reviewdog 🐶
Prefer single-quoted strings when you don't need string interpolation or special symbols.

Suggested change
create_table "deploy_pins", charset: "utf8mb3", force: :cascade do |t|
create_table "deploy_pins", charset: 'utf8mb3', force: :cascade do |t|


ActiveRecord::Schema[7.2].define(version: 2019_03_28_085157) do
create_table "deploy_pins", charset: "utf8mb3", force: :cascade do |t|
t.string "uuid"
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📝 [rubocop] <Style/StringLiterals> reported by reviewdog 🐶
Prefer single-quoted strings when you don't need string interpolation or special symbols.

Suggested change
t.string "uuid"
t.string 'uuid'

# These are extensions that must be enabled in order to support this database
enable_extension 'plpgsql'
enable_extension "plpgsql"
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📝 [rubocop] <Style/StringLiterals> reported by reviewdog 🐶
Prefer single-quoted strings when you don't need string interpolation or special symbols.

Suggested change
enable_extension "plpgsql"
enable_extension 'plpgsql'

t.string 'uuid'
t.datetime 'created_at', precision: 6, null: false
t.datetime 'updated_at', precision: 6, null: false
create_table "deploy_pins", force: :cascade do |t|
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📝 [rubocop] <Style/StringLiterals> reported by reviewdog 🐶
Prefer single-quoted strings when you don't need string interpolation or special symbols.

Suggested change
create_table "deploy_pins", force: :cascade do |t|
create_table 'deploy_pins', force: :cascade do |t|

t.datetime 'created_at', precision: 6, null: false
t.datetime 'updated_at', precision: 6, null: false
create_table "deploy_pins", force: :cascade do |t|
t.string "uuid"
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📝 [rubocop] <Style/StringLiterals> reported by reviewdog 🐶
Prefer single-quoted strings when you don't need string interpolation or special symbols.

Suggested change
t.string "uuid"
t.string 'uuid'

t.datetime 'updated_at', precision: 6, null: false
create_table "deploy_pins", force: :cascade do |t|
t.string "uuid"
t.datetime "created_at", null: false
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📝 [rubocop] <Style/StringLiterals> reported by reviewdog 🐶
Prefer single-quoted strings when you don't need string interpolation or special symbols.

Suggested change
t.datetime "created_at", null: false
t.datetime 'created_at', null: false

create_table "deploy_pins", force: :cascade do |t|
t.string "uuid"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📝 [rubocop] <Style/StringLiterals> reported by reviewdog 🐶
Prefer single-quoted strings when you don't need string interpolation or special symbols.

Suggested change
t.datetime "updated_at", null: false
t.datetime 'updated_at', null: false

@skcc321 skcc321 merged commit 9ed26ab into master Oct 7, 2024
13 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant