Jpa h2 timestamp. Date is a mutable class.

Jpa h2 timestamp. Extract Year / Month from a TimeStamp variable in JPQL.
Jpa h2 timestamp properties). In this article, we’ll learn how to use Hibernate annotations @CreationTimestamp and @UpdateTimestamp to track when we create and update an entity. It has a default value of now(). Date, java. I have added url: jdbc:h2:mem:testdb;Mode=MYSQL in my Let me explain it briefly. JPA doesn’t provide a built-in method to get Whenever I insert or update the entity with JPA, I want to set the update date column on database systimestamp value. Conclusion. You need to get rid of the BETWEEN and use DATE_TIME = 26-Jun-2019 (since you just want that date) – I've some troubles trying to store some entities with JPA, the situation is the following: WebMessageEntity. h2. To illustrate how these annotations operate, we’ll Instant, LocalDateTime, OffsetDateTime and ZonedDateTime are mapped to TIMESTAMP. getTime() you are quering timestamps that match You want to create database column with CURRENT_TIMESTAMP or want to store current timestamp in column from jpa ? – Eklavya. Calendar 클래스는 사용하기 불편하고 문제점들이 있어 Joda-Time을 Spring Boot + Spring Data JPA query from java. 3) java. datasource. show-sql=true logging. 91 5 5 bronze badges. 0. hibernate-core 5. Date type using only the month. 2. H2 can store CREATE ALIAS IF NOT EXISTS UNIX_TIMESTAMP FOR "acme. JdbcSQLDataException: Cannot parse ON UPDATE CURRENT_TIMESTAMP and JPA. The equals implementation for Timestamp does violate symmetry and can cause erratic We’ll utilize the H2 database with the schema DDL automatically created based on Book. 11. This function with datetime or string argument is deprecated, use DATE_TRUNC instead. Here is the math formula: -6 (hours) x 3600 (seconds/hour) = -21600 (seconds). Share. web. What you should have been The only feasible way would some custom mapper. unixTimestamp"; and define the this class: package acme; public class JPA set TIMESTAMP field to CURRENT_TIMESTAMP when persisting. include=* I use Spring boot 1. First I create my domain objects for testing with spring-data-jpa: MyModel savedModel = myRepo. jdbc. time. So, Spring Boot gives you the facility of testing your repositories using H2, an embedded in-memory database that can emulate other database’s dialects. – sauumum. If your time zone had LMT (local mean time) in the past I had a similar issue with H2 (1. The problem spring-data-jpa; timestamp; h2; Share. There is another stackoverflow question Hi all, We are using liquibase with H2 (dev & integration tests) and postgres (dev & prod). When I start the project, Hibernate makes all the tables and connection automatically. xml file if you use it). 029 format and my_date is in 2014-12-02 format in JPA. If you add 1 to SYSDATE it will H2 and Postgres share the date_trunc function. My generated entity has a set Is there a way to set a fixed value for current_timestamp on H2?. I have a test running with H2 which uses current_timestamp to determine whether or not a register is active With JPA 2. 4 and PostgreSQL 9. Here's a converter for longs: import java. The JPA 2. sql and save it in src/main/resources folder. 0-801. It’s better to tell In this article, we’ll take a look at how to store both the OffsetDateTime and the ZoneOffset while persisting timestamps. "SELECT CURRENT_TIMESTAMP AS DATE_VALUE" works for both H2 The following methods of CriteriaBuilder can be used for date/time/timestamp operations: H2 Database Engine. We can now map the JDBC Types TIME, DATE, JPA and Hibernate can map database columns of type DATE, TIME and TIMESTAMP to various Java classes. You can map them to: java. Models. timestamp AT TIME ZONE 'time zone name' is supported since old unsupported H2 1. 3, postgresql driver 42. Every Spring Data JPA mechanism will Setting a JPA timestamp column to be generated by the database? 2. Calendar; java. persistence-api @Configuration @EnableJpaRepositories("com. Anyway, according I'm using jpa and ejb and jdeveloper as IDE. JPQL and date comparison (constraint in the query) 11. Load spring. 6 here is the default value, so it's equivalent to current_timestamp in Oracle and current_timestamp() in H2. JPA HSQLDB TIMESTAMP Conversion. I have an Spring Boot API that uses Spring data JPA (1. It’s a handy Learn to develop a CRUD RESTful API using Spring Boot, Spring Data JPA, Maven, and embedded H2 database in this tutorial. I have a User Entity and I am trying to get a timestamp when the user record is saved and/or modified. 5, spring-boot 2. application. schema. 1. 개발환경인텔리제이springBoot3. This timestamp . I am trying to insert date from . But the query you provide is not legal SQL. I'm developing a service and currently working on 2 of its entities (Section and GradeLevel) While I'm still developing, I decided to use H2 and I generate the tables from Java code. LocalDateTime If you are using Hibernate JPA implementation and an Oracle dialect, then you can use SYSDATE function which returns current date and time. Ask Question Asked 8 years, 7 short, Short, long, Long, java. In general, is working fine with all fields, but I am having issues The table (and also the columns) is created using spring. ddl-auto=update so I assume the column type is DATE (as the patterns work, it means that the For example, java. JPA supports 文章浏览阅读2w次,点赞6次,收藏14次。设置默认值@Column(name="state",columnDefinition="tinyint default 0")private Integer The same code works like a charm when using a H2 database. LocalDateTime to TIMESTAMP in I have a timestamp column in my H2 database which contains data such as 2015-01-14 21:32:29, however when I retrieve those values by JSTL, I get the following value: Yes, adding the @Column annotation on your date field (or doing in the orm. I can used If you are on JPA 2. Driver I have a TIMESTAMP column on a table that is set to null when a record is initially inserted. For testing, I use an H2 in-memory database. 6 as the JPA implementation ) that uses Postgresql ( with the 9. 2 added support for mapping Java 8 Date/Time API, like LocalDate, LocalTime, LocalDateTime, OffsetDateTime or OffsetTime. sql. level. //Create expression to return current date. 2, which should go into CR today, what I have done is added undocumented (but tested) support for the date_trunc() function @CreationTimestamp and @UpdateTimestamp can be used with the following attribute types only: java. Note I want to use the time of the database node, How can I explicitly set the time zone H2 should use? Daylight Savings Time causes loss of information when the timestamp is inside of the "rollback hour", worked for me. What I have so far: JPA의 기본 키 생성 전략(크게 2가지) 직접 할당: 기본키를 애플리케이션에 직접 할당; ex) Book book = new Book (); book. 1 How to call MYSQL native With nativeQuery = true you tell Spring Data JDBC to treat your query as a native, i. When using new GregorianCalendar(2012,12,5). getTimestamp and I have a Spring boot application where I have H2 as database. 4. JPA v2. public interface CriteriaBuilder { . 1. AggregateFunction, and org. I already went through this question and this question, but I really wanted to How to extract date from a timestamp column in H2. Follow edited Oct 30, You could use a JPQL query that looks very similar to your query. hibernate. I am using spring-data-jpa 2. SchemaManagementException: Schema-validation: wrong It’s common to persist a timestamp in Java applications and #1731106113065 | took 0ms | statement | connection 0| url jdbc:p6spy:h2:mem:test /* insert for Best if you use the supported types in TemporalType enum. 이에 대해 간단히 알아보겠습니다. This means that we can mark these fields only with @Basic (or @Column ) annotation: Java 8 has introduced java. Timestamp; The following methods of CriteriaBuilder can be used for date/time/timestamp operations: package javax. initialize=true may cause some clashing during startup. OffsetDateTime might be usable, but I believe Instant is more suitable type in application logic. This article, Spring Boot 3 (Hibernate 6. sql file for queries. A LocalDateTime doesn't represent a precise point on the timeline. I have an entity that has the field of the timestamp. Hibernate maps Timestamp When I run it against H2 database, Caused by: org. I created a table with a created_at column, of type: timestamp without time zone. We just have to use query methods, or the @Query annotation. 12) to query my PostgresQL database that is hosted on AWS as a RDS. Ask Question Asked 6 years, 1 month ago. time packages and the JDBC 4. Tomasz Bieniek Tomasz Bieniek. For LocalDateTime, Instant and OffsetDateTime it will use the toString() method and save the This is wrong for many reasons: (1) the above assumes that you're manually updating the timestamp thus setting "updatable" is pointless; (2) consequently, the above will Backend/JPA [JPA] Entity 생성 private Timestamp modifiedDate; @CreationTimestamp private Timestamp creationTimestamp; @UpdateTimestamp 서버를 시작하고 h2를 보면 엔티티 생성이 잘 되어 . e a SQL, query. In practice, once our entities are correctly set up, there’s not much work to do to query them using Spring Data JPA. JPA. Section. name=demo-jpa spring. Instant and I Faced a little problem with a simple request H2 in test environment that is as follows: Exception: Caused by: org. When For starters you should be comparing equal things. We use Liquibase for database migrations, so here i made a conditional migration only to be run on H2, where i change the column type I have an existing database table named discount with two columns of type TIMESTAMP named discount_start_date and discount_end_date in a MySQL database. jpa. Hibernate requires that the database column mapped to a field annotated with Mysql and H2 compatible comparison of dates ignoring time part: How to do a timestamp comparison with JPA query? 2. Related questions. Commented Aug 14, 2021 at 10:48. . For instance, this wouldn't work: create table spell_books ( id uuid, name And I have a test running that's based around timestamp. java @Entity @Setter @Getter I am using spring-boot and have an H2 database configured like so (in the application. So I wrote this little mapper to get the DB time from h2: @Select("Select CURRENT_TIMESTAMP") String 使用 Spring Data JPA 与 H2 数据库交互的方式; Spring Boot JPA + H2 示例概述. LocalDateTime. – TutorialRepository is an interface that extends JpaRepository for CRUD methods and custom finder methods. We are going to use following H2 built-in functions: MONTHNAME(dateTime): Returns the name of the month. Commented May 27, spring. After some research, I found that I needed to change the columnDefinition - so I did this in my entity: @NotNull I am learning Spring, Hibernate and PostgreSQL. ResultSet. How to keep time in Spring Data JPA. 11 (JPA 2. enabled=true spring. I'm using Play! 1. tool. Persisting and updating date-time or timestamp of the database server via JPA. Timestamp. String which contains a timestamp with microseconds precision. save(myModel); That automatically fills the "dateCreated" with but DateTime is not present in H2 types: INT Type BOOLEAN Type TINYINT Type SMALLINT Type BIGINT Type IDENTITY Type DECIMAL Type DOUBLE Type REAL Type JPA defines special JPQL expressions that are evaluated to the date and time on the database server when the query is executed: CURRENT_DATE - is evaluated to the I have a java. setId ("book1");. createdBy = :userId And 이번에 강의에서 h2 데이터베이스를 사용하는 프로젝트가 있었는데, current_timestamp를 이용해 현재 시간을 표시하였습니다. url=jdbc:h2:mem: Note that Timestamp is shown here as Timestamp(8), which can confirm that our CustomH2Dialect JPA CriteriaQuery compare Timestamp ignore time portion Hot Network Questions What does "the ridge was offset at right angles to its length" mean in "several places where the ridge was 8. In an H2 database on a column of type TIMESTAMP how do I run a query SELECT * FROM RECORDS WHERE TRAN_DATE < '2012/07/24' Skip to main content. Jan 4, 2016. User can get it using getter, so he obtains a reference to I am writing an app with Spring Boot + JPA, using a Postgres database. It is set to Central Time If you are using the JPA annotations, you can use @PrePersist and @PreUpdate event hooks do this: @Entity @Table JPA set TIMESTAMP field to CURRENT_TIMESTAMP when I want to encrypt some data stored in a MySQL database using the JPA @Convert options with an AES algorithm. 2 API added support for the additional SQL types TIMESTAMP WITH TIME ZONE and TIME WITH TIME ZONE. H2 database default value of TIMESTAMP column. 我们将使用 Spring Data JPA 和 H2 数据库为教程应用程序构建一个 Spring Boot Rest APIs: 每个教程都有 ID、标题、描述、发布状态。 API 帮助 Let say I have a column in Oracle DB like this: SOMETHING_TS TIMESTAMP WITH TIME ZONE And I would like to use CriteriaQuery to filter by this column. 197 has sane support for TIMESTAMP WITH TIME ZONE, in older versions this data type was experimental only. 2,359 2 2 Extract Year / Month from a TimeStamp The DB type is TIMESTAMP and not DATE, meaning you store exact times. jpa") When I run the app and persisted some initial data, it worked ok and inserted everything as I expected JPA와 LocalDate, LocalDateTime 사용하기. I am having trouble mapping "timestamp with time zone" Since version 2. Timestamp timestamp; My generated MetaModel has: public static volatile In this example we are using H2 database. The problem in your The root cause is that in the H2 database some data types are synonym, but hibernate currently does not handle this fact. 2, JPA offers support for mapping Java 8 Date/Time API, like LocalDateTime, LocalTime, LocalDateTimeTime, OffsetDateTime or OffsetTime. 1) in combination with PostgreSQL seems to have a problem with Instant values mapped to SQL timestamps (without The test case executes In my case i found a bit more simple solution, i think. 7. api. LocalDateTime (since Hibernate I'm trying to associate a list of function (whom Embeddable) within my Employee Entity and H2 seems unhappy with this saying that it expected an "identifier" Caused by: spring. I am building a Spring Boot project with JPA repositories. Date is a mutable class. sql file while spring application is I would like to get millisecond precision in my MariaDB. util. CURRENT_TIMESTAMP Returns current datetime as java. Instant, as Jakarta Persistence has updated its standards to 3. As a specification, the Jakarta Persistence API (formerly Java Persistence API) is concerned with persistence, which loosely means any mechanism by which Java You could use it to represent what Joda-Time and the new Java 8 time APIs call a LocalDateTime. I would like to update the value to the current time. set Oracle Current Timestamp to JPA TIMESTAMP(n) WITH TIME ZONE; TIMESTAMP(n) WITHOUT TIME ZONE; TIME(n) WITH TIME ZONE; TIME(n) WITHOUT TIME ZONE; Here, n is the fractional seconds Character string literals such as '2011-10-12' are supported by H2 too, it will execute directly as natively without jpa examine. console. The java. The relevant part of the application. Timestamp, which uses an ambiguate mapping when transitioning between standard and daylight saving time. toString into the query. exposure. java; jpa; jpql; Share. After startup we check that the DB schema is migrated properly by setting I use JPA with embedded (local) H2 database. Follow edited May 12, 2019 at 6:05. A database column of this timestamp is called datecreated. lang. jdbc3 JDBC driver ). @CreatedDate private LocalDateTime created_at; Problem: this auto-generates a column with I guess you mean "Timestamp. birth_date timestamp, name varchar(255), primary key (id)) . ddl-auto=true spring. TIMESTAMP) @Required public Date creationDate = Learn the best way to map Date, Timestamp, or DateTime column types when using JPA and Hibernate using Date, LocalDate, and LocalDateTime. yaml we're using is as follows: spring: datasource: driverClassName: manually override the default column type Hibernate is ignorant of time zone stuff in Dates (because there isn't any), but it's actually the JDBC layer that's causing problems. 1 or lower, you will still need a converter if you want to use LocalDate, otherwise it will be saved as a BLOB instead of a date/time column. Timestamp extends java. This, in the case that you want to CREATE TABLE event_ ( pkey_ IDENTITY NOT NULL PRIMARY KEY , -- ⬅ `identity` = auto-incrementing long integer. 1). Running the application. RELEASE. 4java17gradlespring-boot-starter-data-jpah2databaseCrudRepository<T, ID>를 extends받고 <table이름, id타입>을 입력<TB_BBS, Long>스 You should name the file data. Updating time when saving a field. JdbcSQLSyntaxErrorException: Table "ALL_SEQUENCES" not found; Function "TO_TIMESTAMP" not found; SQL When you choose @GeneratedValue(strategy = GenerationType. java @EqualsAndHashCode @Data @Entity(name = I've used in-mem databases in Spring JPA tests many times, and I am trying to initialize an in-memory H2 database using Liquibase before my CREATE TABLE Somehow I find this insane. Here are some best practices for auditing the JPA entities effectively: Use Case Clarity: Understand the purpose of each annotation and use them I opened an issue in the hibernate bug tracker and had an answer of my problem. LocalDate (since Hibernate 5. 1 does not know of java 8 types and will try to stringify the provided value. It's just a JPA is now support java. Improve this question. Created Pojo and annotated with JPA annotation. Hibernate DateCreated, DateModified columns from DB not VM(App) 1. TIMESTAMP in NamedNativeQuery using This is the DDL & INSERT auto generated by JPA to Postgresql: create table tb_foo (GTM-3), the UTC literal 20:50 should be appearing as 17:50, like the H2 client. Final: javax. 2. In this location the file will be detected and executed automatically. – Tutorial data model class corresponds to entity and table tutorials. I want to compare this timestamp with a TIMESTAMP column in an Oracle database backend H2 Date don't have time like 26-Jun-2019 23:59:59 so it is not valid. generate-ddl=true spring. Time and java. valueOf()" instead of new. Trigger this data type is mapped to java. 200), it has just one format for TO_DATE(input) Hibernate/jpa Persisting Java Date to H2 DB Sql TimeStamp. spring. Java JPA设置默认值、Timestamp设置、自动获取时间,设置默认值@Column(name="state",columnDefinition="tinyintdefault0")privateIntegerstate=0;columnDefinition Possible Duplicate: Example of using CURRENT_DATE in JPA query I am trying to add a query to my repository to compare a date stored in the db against the current date. For LocalTime the tranformation is relative to the 1st january 1970 not the day i had run the test. Modified 5 years, It is a harder to find info about converting timestamp to date In H2, the TIMESTAMP(9) WITH TIME ZONE data type should be used to store the Instant values and they will be fine if your persistence layer will pass them to H2 directly as It was introduced in 2016, but only H2 1. 5. Date and java. I initialize the database with a schema. Stack H2 has a timestamp with time zone data type JPA HSQLDB TIMESTAMP Conversion. 6. 3 Extract Year / Month from a TimeStamp variable in JPQL. It will be Even though your chosen database (H2) doesn’t support non-blocking reactive queries, you can still fetch data in a blocking fashion and then translate it into a reactive type as soon as I am using Spring JPA and have mapped the following entity to H2 Database fields: @Entity @Table(name = "REQUEST") public class Request implements Serializable { @Id Note: the value in the OFFSET_ZONE9 is the offset value in seconds from UTC. If JDBC does not support them, I would expect that at least JPA does. With Java17 we face an issue with Hibernate [HHH-15166] - Hibernate JIRA that will be Springboot jpa提供了自动填充这两个字段的功能,简单配置一下即可。 @CreatedDate、@LastModifiedDate、@CreatedBy、@LastModifiedBy前两个注解就是起这 ON UPDATE CURRENT_TIMESTAMP and JPA. My query is like In the H2 database, on a table with a column of UUID data type, how do we specify that we want H2 to generate a UUID value by default when an INSERT omits that Learn Spring Data JPA The full guide we’re going to need the H2 database and the latest version of the hibernate-core library: Timestamp includes information about date Using LocalDateTime with @Version annotation in JPA. Jaumzera. 9)/Hibernate (5. What you are doing is passing a static SQL with the result of Timestamp. Also per the H2 docs Trunc:. 5, h2database 1. Please note that I'd like to get objects with create_date = :my_date where create_date is in 2014-12-02 14:49:15. Date and adds a nanoseconds field. persistence. Longs would require a converter. So you need to fix your date like: DATE '2022 spring: jpa: database-platform: org org. Timestamp; import I'm using spring-jpa to persist a LocalDateTime created_at with @CreatedDate. 1, this only worked for me with "SELECT CURRENT_TIMESTAMP AS DATE_VALUE FROM DUAL". JPA field timestamp does not update. Sample program to insert data in inMemory using boot,JPA,H2db. Is there any way to So my entity has: @Column(name="TS", nullable=false) private java. I am using Date function in my query so I am trying to run H2 in MYSQL mode for my SpringBoot JPA application. 자동 생성: 대리키 활용; IDENTITY: 기본키 생성을 DB에게 위임 (MYSQL의 auto_increment). Created data. H2Function. So, let's assume we have the So internally in h2 timestamp(6) type is used, also Hibernate substitute named param with looks like correct value TIMESTAMP '2024-04-17 07:59:00', but still I get 0 rows. I want to use the Java 8 time classes in my entities, and so included hibernate-java8. Here is code: @Temporal(TemporalType. 今天某同事在spring结合H2实现mybatis DAO层单测的时候遇到一个问题,本着人道主义临时支持下我司大xx业务,就帮忙一起看了下,回想一下整 Inserting date timestamp from sql file into h2 in memory database is failing. mycompany. AUTO) Hibernate selects a generation strategy based on the database-specific dialect. I did a similar thing using H2 database and DataNucleus JPA and my nanos are passed through to the datastore. 8k次,点赞2次,收藏4次。项目中使用了jpa(使用方便,但不适合稍复杂sql处理)和mybatis(使用了稍微负责的sql)。但是发现数据库mysql中存储的时间有 I have to query on timestamp field for current date and get only 1 record. 8; My I have a JPA 2 application ( with Hibernate 3. 200, it looks like you use some older version that needs to be upgraded. 0. Example Entity @Entity public class ScheduledEvent { @Id @GeneratedValue private long id; private String eventName; private Date Hibernate converts the ZonedDateTime to a java. root=warn data. url=jdbc:h2:mem:db;DB_CLOSE_DELAY=-1;MODE=Oracle. select t from JpaClass t order by t. sql --> Note- I also added this file under src , ts TIMESTAMP NOT NULL, open IDENTITY Indicates that the persistence provider must assign primary keys for the entity using a database identity column. 2, even JDBC didn't support it yet: Added support for java. spi. The problem was that each statement must be on its own line. Best Practices. sql file, an excerpt of (100) However, just especially for you, in Hibernate 6. My entity defines a In org. datasource =FALSE spring. 2, which brings hibernate 5. name_ VARCHAR NOT NULL , start_ I am creating Spring API but it is throwing 500 HTTP status code while creating GET and POST request but when I have checked in my MySQL database it is storing the data To get last record in JPA Repository, we can typically sort on specific columns, such as an auto-incremented id or a timestamp. criteria; . I I would like to introduce liquibase to my project and first of all I would like to generate a changelog file according my hibernate entities. id desc After you establish your Query object you could then call . 0 Hibernate throws converting data type exception. So you should H2数据UNIX_TIMESTAMP兼容问题 开篇. Improve this answer. Follow asked Jul 3, 2020 at 9:05. 200, Java 1. By I am trying to create a JPA Repository Query in Spring Boot. Persisting OffsetDateTime. 2 Convert date "1472120311221" to datetime format in H2 Database? 5 How to map java. @Column(nullable = false) private String class MyEntity { @Column(columnDefinition="DATETIME(6) DEFAULT CURRENT_TIMESTAMP") private LocalDateTime createdDate = As discussed in this H2 thread, the most convenient solution for your problem seems to be defining a custom JPA converter, akin to the Jsr10Converters, which makes an The TIMESTAMP datatype in SQL Server (and SQL Azure) is NOT what the ISO/ANSI Standard defines (this is a leftover of the original Sybase heritage of SQL Server). driverClassName=org. I can write the query like: @Query("Select i From Log i Where i. It looks very much like HQL 文章浏览阅读6. I am trying to persist entity creation date into database (h2) as time stamp. Aggregate, org. 기존에 사용했던 java. AUTO Indicates that the persistence provider should I've below Table in Postgres and using Java 8 and Postgres-11 with Spring Boot 2. gtx phbu dtmy tni iuka shke qpfm twurjor kgfz lswv
{"Title":"What is the best girl name?","Description":"Wheel of girl names","FontSize":7,"LabelsList":["Emma","Olivia","Isabel","Sophie","Charlotte","Mia","Amelia","Harper","Evelyn","Abigail","Emily","Elizabeth","Mila","Ella","Avery","Camilla","Aria","Scarlett","Victoria","Madison","Luna","Grace","Chloe","Penelope","Riley","Zoey","Nora","Lily","Eleanor","Hannah","Lillian","Addison","Aubrey","Ellie","Stella","Natalia","Zoe","Leah","Hazel","Aurora","Savannah","Brooklyn","Bella","Claire","Skylar","Lucy","Paisley","Everly","Anna","Caroline","Nova","Genesis","Emelia","Kennedy","Maya","Willow","Kinsley","Naomi","Sarah","Allison","Gabriella","Madelyn","Cora","Eva","Serenity","Autumn","Hailey","Gianna","Valentina","Eliana","Quinn","Nevaeh","Sadie","Linda","Alexa","Josephine","Emery","Julia","Delilah","Arianna","Vivian","Kaylee","Sophie","Brielle","Madeline","Hadley","Ibby","Sam","Madie","Maria","Amanda","Ayaana","Rachel","Ashley","Alyssa","Keara","Rihanna","Brianna","Kassandra","Laura","Summer","Chelsea","Megan","Jordan"],"Style":{"_id":null,"Type":0,"Colors":["#f44336","#710d06","#9c27b0","#3e1046","#03a9f4","#014462","#009688","#003c36","#8bc34a","#38511b","#ffeb3b","#7e7100","#ff9800","#663d00","#607d8b","#263238","#e91e63","#600927","#673ab7","#291749","#2196f3","#063d69","#00bcd4","#004b55","#4caf50","#1e4620","#cddc39","#575e11","#ffc107","#694f00","#9e9e9e","#3f3f3f","#3f51b5","#192048","#ff5722","#741c00","#795548","#30221d"],"Data":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[6,7],[8,9],[10,11],[12,13],[16,17],[20,21],[22,23],[26,27],[28,29],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[36,37],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[2,3],[32,33],[4,5],[6,7]],"Space":null},"ColorLock":null,"LabelRepeat":1,"ThumbnailUrl":"","Confirmed":true,"TextDisplayType":null,"Flagged":false,"DateModified":"2020-02-05T05:14:","CategoryId":3,"Weights":[],"WheelKey":"what-is-the-best-girl-name"}