Tidy up homepage and navigation
This commit is contained in:
12
db/migrate/20251108041801_create_dsns.rb
Normal file
12
db/migrate/20251108041801_create_dsns.rb
Normal file
@@ -0,0 +1,12 @@
|
||||
class CreateDsns < ActiveRecord::Migration[8.1]
|
||||
def change
|
||||
create_table :dsns do |t|
|
||||
t.string :key
|
||||
t.string :name
|
||||
t.boolean :enabled, default: true, null: false
|
||||
|
||||
t.timestamps
|
||||
end
|
||||
add_index :dsns, :key, unique: true
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user