Add sql snippets highlighting

This commit is contained in:
Evaldas Grudzinskas 2018-10-15 11:51:02 +03:00 committed by GitHub
parent d5f0f011da
commit eb529065bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,7 +6,7 @@ A requirement for a migration to run is that the two _before_ and _after_ tables
Consider a classic, simple migration. The table is any normal:
```
```sql
CREATE TABLE tbl (
id bigint unsigned not null auto_increment,
data varchar(255),
@ -37,7 +37,7 @@ Upon migration, `gh-ost` inspects both the original and _ghost_ table and attemp
### Examples: allowed and not allowed
```
```sql
create table some_table (
id int auto_increment,
ts timestamp,