You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I migrated only 2 tables users (16K records) and gender (3 records) but I got only 3 values in users collection and none in gender.
What am I doing wrong?
I migrated only 2 tables users (16K records) and gender (3 records) but I got only 3 values in users collection and none in gender.
What am I doing wrong?
Translation is as follows :
table "users" do
column "ID", :key, :as => :integer
column "PRIORITY", :integer
column "FIRST_NAME", :string
column "LAST_NAME", :string
column "USER_NAME", :string
column "GENDER_ID", :integer, :references => "gender"
column "DOB", :date
column "USER_EMAIL", :string
column "USER_ALTERNATE_EMAIL", :string
column "PASSWORD", :string
column "CREATED_ON", :datetime
column "UPDATED_ON", :datetime
column "VERIFIED", :integer
column "UPLOADED_BY", :string
end
table "gender" do
column "ID", :key, :as => :integer
column "GENDER", :string
column "CREATED_ON", :datetime
column "CREATED_BY", :integer
column "UPDATED_ON", :datetime
column "UPDATED_BY", :integer
end
The text was updated successfully, but these errors were encountered: