v1 finished
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
class AddColorsToLocalNetwork < ActiveRecord::Migration[7.2]
|
||||
def change
|
||||
add_column :local_networks, :primary_dark_hex, :string
|
||||
add_column :local_networks, :primary_light_hex, :string
|
||||
add_column :local_networks, :accent_hex, :string
|
||||
end
|
||||
end
|
||||
+4
-1
@@ -10,13 +10,16 @@
|
||||
#
|
||||
# It's strongly recommended that you check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema[7.2].define(version: 2026_05_27_212837) do
|
||||
ActiveRecord::Schema[7.2].define(version: 2026_06_16_133017) do
|
||||
create_table "local_networks", charset: "utf8mb4", collation: "utf8mb4_0900_ai_ci", force: :cascade do |t|
|
||||
t.string "name"
|
||||
t.string "subnet"
|
||||
t.string "tld"
|
||||
t.datetime "created_at", null: false
|
||||
t.datetime "updated_at", null: false
|
||||
t.string "primary_dark_hex"
|
||||
t.string "primary_light_hex"
|
||||
t.string "accent_hex"
|
||||
end
|
||||
|
||||
create_table "machines", charset: "utf8mb4", collation: "utf8mb4_0900_ai_ci", force: :cascade do |t|
|
||||
|
||||
Reference in New Issue
Block a user