mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-14 21:24:54 +08:00
20 lines
524 B
Ruby
20 lines
524 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CreateLabelPrinters < ActiveRecord::Migration[6.1]
|
|
def change
|
|
create_table :label_printers do |t|
|
|
t.string :name, null: false
|
|
t.string :description
|
|
t.integer :type_of, null: false
|
|
t.integer :language_type, null: false
|
|
t.string :host
|
|
t.integer :port
|
|
t.string :fluics_api_key
|
|
t.string :fluics_lid
|
|
t.string :current_print_job_ids, array: true, default: []
|
|
t.integer :status, default: 0
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|