* Change: #647 NGワードの入力フォーム * Wip: 画面改造 * テストコード、画面 * Fix: 複数の問題
This commit is contained in:
parent
0d2b415e26
commit
95ab1f729c
33 changed files with 526 additions and 172 deletions
10
db/schema.rb
10
db/schema.rb
|
@ -10,7 +10,7 @@
|
|||
#
|
||||
# It's strongly recommended that you check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema[7.1].define(version: 2024_03_12_230204) do
|
||||
ActiveRecord::Schema[7.1].define(version: 2024_03_20_231633) do
|
||||
# These are extensions that must be enabled in order to support this database
|
||||
enable_extension "plpgsql"
|
||||
|
||||
|
@ -926,6 +926,14 @@ ActiveRecord::Schema[7.1].define(version: 2024_03_12_230204) do
|
|||
t.datetime "updated_at", null: false
|
||||
end
|
||||
|
||||
create_table "ng_words", force: :cascade do |t|
|
||||
t.string "keyword", null: false
|
||||
t.boolean "regexp", default: false, null: false
|
||||
t.boolean "stranger", default: true, null: false
|
||||
t.datetime "created_at", null: false
|
||||
t.datetime "updated_at", null: false
|
||||
end
|
||||
|
||||
create_table "ngword_histories", force: :cascade do |t|
|
||||
t.string "uri", null: false
|
||||
t.integer "target_type", null: false
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue