مراية لـ
https://github.com/postalserver/postal.git
تم المزامنة 2026-03-04 06:44:06 +00:00
20 أسطر
511 B
Ruby
20 أسطر
511 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Postal
|
|
module MessageDB
|
|
module Migrations
|
|
class CreateMigrations < Postal::MessageDB::Migration
|
|
|
|
def up
|
|
@database.provisioner.create_table(:migrations,
|
|
columns: {
|
|
version: "int(11) NOT NULL"
|
|
},
|
|
primary_key: "`version`")
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|