forked from Gitlink/forgeplus
26 lines
764 B
Ruby
26 lines
764 B
Ruby
# == Schema Information
|
|
#
|
|
# Table name: action_node_inputs
|
|
#
|
|
# id :integer not null, primary key
|
|
# action_nodes_id :integer
|
|
# name :string(255)
|
|
# input_type :string(255)
|
|
# description :string(255)
|
|
# is_required :boolean default("0")
|
|
# sort_no :integer default("0")
|
|
# user_id :integer
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
# default_value :string(255)
|
|
# type :string(255) default("Action::NodeInputs::With")
|
|
#
|
|
# Indexes
|
|
#
|
|
# index_action_node_inputs_on_action_nodes_id (action_nodes_id)
|
|
# index_action_node_inputs_on_user_id (user_id)
|
|
#
|
|
|
|
class Action::NodeInputs::Env < Action::NodeInput
|
|
end
|