Перевод проекта на единую SQLite БД, WAL и обновление README для Windows

This commit is contained in:
2026-03-03 23:53:22 +05:00
parent 906a6cb91f
commit 9bfc6e668f
11 changed files with 100 additions and 34 deletions

View File

@@ -0,0 +1,16 @@
Sequel.migration do
change do
create_table :cards do
primary_key :id
column :name, String, null: false
column :elixir_cost, Integer, null: false
column :rarity, String
column :type, String
column :is_meta, Integer, default: 0
column :created_at, DateTime, null: false, default: Sequel::CURRENT_TIMESTAMP
column :updated_at, DateTime, null: false, default: Sequel::CURRENT_TIMESTAMP
end
end
end